Airbnb is an online marketplace which lets people rent out their properties or spare rooms to guests. Since the company launched in 2009, it’s grown from helping 21,000 guests a year find a place to stay to helping six million a year go on holiday, and currently lists a staggering 800,000 properties in 34,000 cities across 90 different countries.
In this project we will analyze the homestay dataset from Seattle, WA (USA)
Through this analysis we will try to answer the following questions:
- Which is the most popular neighborhood in Seattle? And similarly which is the least popular area in Seattle? What can we tell by looking at their monthly pricing trends?
- How does price fluctuate over time? Is there any seasonal effect over pricing?
- What are the main amenities? There will be many in the catalog but we will try to find the main profiles
- What are the different features that decide the pricing?
- Can we classify the properties? It would be nice to see what features bring the properties together and what separates them
This section we will try to understand the data we have in our folder. We have the following 3 files to work on:
- Calendar
- Listings
- Reviews
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import datetime as dt
#Pre Processing Libraries
from sklearn.preprocessing import MinMaxScaler, StandardScaler, RobustScaler, QuantileTransformer, Imputer
from sklearn.cross_validation import train_test_split
from sklearn.metrics import fbeta_score, accuracy_score
#Different models input statements
from sklearn.linear_model import LinearRegression
from sklearn import linear_model
from sklearn import svm
#To print the best parameters
from pprint import pprint
#Model tuning libraries
from sklearn import grid_search
from sklearn.model_selection import GridSearchCV
from sklearn.ensemble import AdaBoostRegressor
#Model evaluation metrics
from sklearn.metrics import mean_squared_error
from sklearn.metrics import r2_score
from time import time
%matplotlib inline
pd.options.display.max_rows = None
pd.options.display.max_columns = None
from sklearn.decomposition import PCA
from sklearn.preprocessing import MinMaxScaler, StandardScaler, RobustScaler, QuantileTransformer, Imputer
C:\ProgramData\Anaconda3\lib\site-packages\sklearn\cross_validation.py:41: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning) C:\ProgramData\Anaconda3\lib\site-packages\sklearn\grid_search.py:42: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. This module will be removed in 0.20. DeprecationWarning)
calendar = pd.read_csv('./Seattle data/calendar.csv')
listings = pd.read_csv('./Seattle data/listings.csv')
reviews = pd.read_csv('./Seattle data/reviews.csv')
def dataset_desc(df):
print("The contents of the dataset are")
print(df.info())
print("\n Time is as per follows")
print(df.date.max())
print(df.date.min())
def dataset_head(df):
print("\n The shape of the dataset are:")
print(df.shape)
print("\nThe top 5 rows from the dataset are")
print(df.head())
dataset_desc(calendar)
The contents of the dataset are <class 'pandas.core.frame.DataFrame'> RangeIndex: 1393570 entries, 0 to 1393569 Data columns (total 4 columns): listing_id 1393570 non-null int64 date 1393570 non-null object available 1393570 non-null object price 934542 non-null object dtypes: int64(1), object(3) memory usage: 42.5+ MB None Time is as per follows 2017-01-02 2016-01-04
dataset_desc(reviews)
The contents of the dataset are <class 'pandas.core.frame.DataFrame'> RangeIndex: 84849 entries, 0 to 84848 Data columns (total 6 columns): listing_id 84849 non-null int64 id 84849 non-null int64 date 84849 non-null object reviewer_id 84849 non-null int64 reviewer_name 84849 non-null object comments 84831 non-null object dtypes: int64(3), object(3) memory usage: 3.9+ MB None Time is as per follows 2016-01-03 2009-06-07
dataset_desc(listings)
The contents of the dataset are <class 'pandas.core.frame.DataFrame'> RangeIndex: 3818 entries, 0 to 3817 Data columns (total 92 columns): id 3818 non-null int64 listing_url 3818 non-null object scrape_id 3818 non-null int64 last_scraped 3818 non-null object name 3818 non-null object summary 3641 non-null object space 3249 non-null object description 3818 non-null object experiences_offered 3818 non-null object neighborhood_overview 2786 non-null object notes 2212 non-null object transit 2884 non-null object thumbnail_url 3498 non-null object medium_url 3498 non-null object picture_url 3818 non-null object xl_picture_url 3498 non-null object host_id 3818 non-null int64 host_url 3818 non-null object host_name 3816 non-null object host_since 3816 non-null object host_location 3810 non-null object host_about 2959 non-null object host_response_time 3295 non-null object host_response_rate 3295 non-null object host_acceptance_rate 3045 non-null object host_is_superhost 3816 non-null object host_thumbnail_url 3816 non-null object host_picture_url 3816 non-null object host_neighbourhood 3518 non-null object host_listings_count 3816 non-null float64 host_total_listings_count 3816 non-null float64 host_verifications 3818 non-null object host_has_profile_pic 3816 non-null object host_identity_verified 3816 non-null object street 3818 non-null object neighbourhood 3402 non-null object neighbourhood_cleansed 3818 non-null object neighbourhood_group_cleansed 3818 non-null object city 3818 non-null object state 3818 non-null object zipcode 3811 non-null object market 3818 non-null object smart_location 3818 non-null object country_code 3818 non-null object country 3818 non-null object latitude 3818 non-null float64 longitude 3818 non-null float64 is_location_exact 3818 non-null object property_type 3817 non-null object room_type 3818 non-null object accommodates 3818 non-null int64 bathrooms 3802 non-null float64 bedrooms 3812 non-null float64 beds 3817 non-null float64 bed_type 3818 non-null object amenities 3818 non-null object square_feet 97 non-null float64 price 3818 non-null object weekly_price 2009 non-null object monthly_price 1517 non-null object security_deposit 1866 non-null object cleaning_fee 2788 non-null object guests_included 3818 non-null int64 extra_people 3818 non-null object minimum_nights 3818 non-null int64 maximum_nights 3818 non-null int64 calendar_updated 3818 non-null object has_availability 3818 non-null object availability_30 3818 non-null int64 availability_60 3818 non-null int64 availability_90 3818 non-null int64 availability_365 3818 non-null int64 calendar_last_scraped 3818 non-null object number_of_reviews 3818 non-null int64 first_review 3191 non-null object last_review 3191 non-null object review_scores_rating 3171 non-null float64 review_scores_accuracy 3160 non-null float64 review_scores_cleanliness 3165 non-null float64 review_scores_checkin 3160 non-null float64 review_scores_communication 3167 non-null float64 review_scores_location 3163 non-null float64 review_scores_value 3162 non-null float64 requires_license 3818 non-null object license 0 non-null float64 jurisdiction_names 3818 non-null object instant_bookable 3818 non-null object cancellation_policy 3818 non-null object require_guest_profile_picture 3818 non-null object require_guest_phone_verification 3818 non-null object calculated_host_listings_count 3818 non-null int64 reviews_per_month 3191 non-null float64 dtypes: float64(17), int64(13), object(62) memory usage: 2.7+ MB None Time is as per follows
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-2b3c46a0b2c5> in <module>() ----> 1 dataset_desc(listings) <ipython-input-7-9edffc497752> in dataset_desc(df) 4 print(df.info()) 5 print("\n Time is as per follows") ----> 6 print(df.date.max()) 7 print(df.date.min()) C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\generic.py in __getattr__(self, name) 4370 if self._info_axis._can_hold_identifiers_and_holds_name(name): 4371 return self[name] -> 4372 return object.__getattribute__(self, name) 4373 4374 def __setattr__(self, name, value): AttributeError: 'DataFrame' object has no attribute 'date'
dataset_head(calendar)
The shape of the dataset are: (1393570, 4) The top 5 rows from the dataset are listing_id date available price 0 241032 2016-01-04 t $85.00 1 241032 2016-01-05 t $85.00 2 241032 2016-01-06 f NaN 3 241032 2016-01-07 f NaN 4 241032 2016-01-08 f NaN
dataset_head(reviews)
The shape of the dataset are:
(84849, 6)
The top 5 rows from the dataset are
listing_id id date reviewer_id reviewer_name \
0 7202016 38917982 2015-07-19 28943674 Bianca
1 7202016 39087409 2015-07-20 32440555 Frank
2 7202016 39820030 2015-07-26 37722850 Ian
3 7202016 40813543 2015-08-02 33671805 George
4 7202016 41986501 2015-08-10 34959538 Ming
comments
0 Cute and cozy place. Perfect location to every...
1 Kelly has a great room in a very central locat...
2 Very spacious apartment, and in a great neighb...
3 Close to Seattle Center and all it has to offe...
4 Kelly was a great host and very accommodating ...
listings.head()
| id | listing_url | scrape_id | last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | notes | transit | thumbnail_url | medium_url | picture_url | xl_picture_url | host_id | host_url | host_name | host_since | host_location | host_about | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_thumbnail_url | host_picture_url | host_neighbourhood | host_listings_count | host_total_listings_count | host_verifications | host_has_profile_pic | host_identity_verified | street | neighbourhood | neighbourhood_cleansed | neighbourhood_group_cleansed | city | state | zipcode | market | smart_location | country_code | country | latitude | longitude | is_location_exact | property_type | room_type | accommodates | bathrooms | bedrooms | beds | bed_type | amenities | square_feet | price | weekly_price | monthly_price | security_deposit | cleaning_fee | guests_included | extra_people | minimum_nights | maximum_nights | calendar_updated | has_availability | availability_30 | availability_60 | availability_90 | availability_365 | calendar_last_scraped | number_of_reviews | first_review | last_review | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | requires_license | license | jurisdiction_names | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 241032 | https://www.airbnb.com/rooms/241032 | 20160104002432 | 2016-01-04 | Stylish Queen Anne Apartment | NaN | Make your self at home in this charming one-be... | Make your self at home in this charming one-be... | none | NaN | NaN | NaN | NaN | NaN | https://a1.muscache.com/ac/pictures/67560560/c... | NaN | 956883 | https://www.airbnb.com/users/show/956883 | Maija | 2011-08-11 | Seattle, Washington, United States | I am an artist, interior designer, and run a s... | within a few hours | 96% | 100% | f | https://a0.muscache.com/ac/users/956883/profil... | https://a0.muscache.com/ac/users/956883/profil... | Queen Anne | 3.0 | 3.0 | ['email', 'phone', 'reviews', 'kba'] | t | t | Gilman Dr W, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.636289 | -122.371025 | t | Apartment | Entire home/apt | 4 | 1.0 | 1.0 | 1.0 | Real Bed | {TV,"Cable TV",Internet,"Wireless Internet","A... | NaN | $85.00 | NaN | NaN | NaN | NaN | 2 | $5.00 | 1 | 365 | 4 weeks ago | t | 14 | 41 | 71 | 346 | 2016-01-04 | 207 | 2011-11-01 | 2016-01-02 | 95.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 10.0 | f | NaN | WASHINGTON | f | moderate | f | f | 2 | 4.07 |
| 1 | 953595 | https://www.airbnb.com/rooms/953595 | 20160104002432 | 2016-01-04 | Bright & Airy Queen Anne Apartment | Chemically sensitive? We've removed the irrita... | Beautiful, hypoallergenic apartment in an extr... | Chemically sensitive? We've removed the irrita... | none | Queen Anne is a wonderful, truly functional vi... | What's up with the free pillows? Our home was... | Convenient bus stops are just down the block, ... | https://a0.muscache.com/ac/pictures/14409893/f... | https://a0.muscache.com/im/pictures/14409893/f... | https://a0.muscache.com/ac/pictures/14409893/f... | https://a0.muscache.com/ac/pictures/14409893/f... | 5177328 | https://www.airbnb.com/users/show/5177328 | Andrea | 2013-02-21 | Seattle, Washington, United States | Living east coast/left coast/overseas. Time i... | within an hour | 98% | 100% | t | https://a0.muscache.com/ac/users/5177328/profi... | https://a0.muscache.com/ac/users/5177328/profi... | Queen Anne | 6.0 | 6.0 | ['email', 'phone', 'facebook', 'linkedin', 're... | t | t | 7th Avenue West, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.639123 | -122.365666 | t | Apartment | Entire home/apt | 4 | 1.0 | 1.0 | 1.0 | Real Bed | {TV,Internet,"Wireless Internet",Kitchen,"Free... | NaN | $150.00 | $1,000.00 | $3,000.00 | $100.00 | $40.00 | 1 | $0.00 | 2 | 90 | today | t | 13 | 13 | 16 | 291 | 2016-01-04 | 43 | 2013-08-19 | 2015-12-29 | 96.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | f | NaN | WASHINGTON | f | strict | t | t | 6 | 1.48 |
| 2 | 3308979 | https://www.airbnb.com/rooms/3308979 | 20160104002432 | 2016-01-04 | New Modern House-Amazing water view | New modern house built in 2013. Spectacular s... | Our house is modern, light and fresh with a wa... | New modern house built in 2013. Spectacular s... | none | Upper Queen Anne is a charming neighborhood fu... | Our house is located just 5 short blocks to To... | A bus stop is just 2 blocks away. Easy bus a... | NaN | NaN | https://a2.muscache.com/ac/pictures/b4324e0f-a... | NaN | 16708587 | https://www.airbnb.com/users/show/16708587 | Jill | 2014-06-12 | Seattle, Washington, United States | i love living in Seattle. i grew up in the mi... | within a few hours | 67% | 100% | f | https://a1.muscache.com/ac/users/16708587/prof... | https://a1.muscache.com/ac/users/16708587/prof... | Queen Anne | 2.0 | 2.0 | ['email', 'phone', 'google', 'reviews', 'jumio'] | t | t | West Lee Street, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.629724 | -122.369483 | t | House | Entire home/apt | 11 | 4.5 | 5.0 | 7.0 | Real Bed | {TV,"Cable TV",Internet,"Wireless Internet","A... | NaN | $975.00 | NaN | NaN | $1,000.00 | $300.00 | 10 | $25.00 | 4 | 30 | 5 weeks ago | t | 1 | 6 | 17 | 220 | 2016-01-04 | 20 | 2014-07-30 | 2015-09-03 | 97.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | f | NaN | WASHINGTON | f | strict | f | f | 2 | 1.15 |
| 3 | 7421966 | https://www.airbnb.com/rooms/7421966 | 20160104002432 | 2016-01-04 | Queen Anne Chateau | A charming apartment that sits atop Queen Anne... | NaN | A charming apartment that sits atop Queen Anne... | none | NaN | NaN | NaN | NaN | NaN | https://a0.muscache.com/ac/pictures/94146944/6... | NaN | 9851441 | https://www.airbnb.com/users/show/9851441 | Emily | 2013-11-06 | Seattle, Washington, United States | NaN | NaN | NaN | NaN | f | https://a2.muscache.com/ac/users/9851441/profi... | https://a2.muscache.com/ac/users/9851441/profi... | Queen Anne | 1.0 | 1.0 | ['email', 'phone', 'facebook', 'reviews', 'jum... | t | t | 8th Avenue West, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.638473 | -122.369279 | t | Apartment | Entire home/apt | 3 | 1.0 | 0.0 | 2.0 | Real Bed | {Internet,"Wireless Internet",Kitchen,"Indoor ... | NaN | $100.00 | $650.00 | $2,300.00 | NaN | NaN | 1 | $0.00 | 1 | 1125 | 6 months ago | t | 0 | 0 | 0 | 143 | 2016-01-04 | 0 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | f | NaN | WASHINGTON | f | flexible | f | f | 1 | NaN |
| 4 | 278830 | https://www.airbnb.com/rooms/278830 | 20160104002432 | 2016-01-04 | Charming craftsman 3 bdm house | Cozy family craftman house in beautiful neighb... | Cozy family craftman house in beautiful neighb... | Cozy family craftman house in beautiful neighb... | none | We are in the beautiful neighborhood of Queen ... | Belltown | The nearest public transit bus (D Line) is 2 b... | NaN | NaN | https://a1.muscache.com/ac/pictures/6120468/b0... | NaN | 1452570 | https://www.airbnb.com/users/show/1452570 | Emily | 2011-11-29 | Seattle, Washington, United States | Hi, I live in Seattle, Washington but I'm orig... | within an hour | 100% | NaN | f | https://a0.muscache.com/ac/users/1452570/profi... | https://a0.muscache.com/ac/users/1452570/profi... | Queen Anne | 2.0 | 2.0 | ['email', 'phone', 'facebook', 'reviews', 'kba'] | t | t | 14th Ave W, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.632918 | -122.372471 | t | House | Entire home/apt | 6 | 2.0 | 3.0 | 3.0 | Real Bed | {TV,"Cable TV",Internet,"Wireless Internet",Ki... | NaN | $450.00 | NaN | NaN | $700.00 | $125.00 | 6 | $15.00 | 1 | 1125 | 7 weeks ago | t | 30 | 60 | 90 | 365 | 2016-01-04 | 38 | 2012-07-10 | 2015-10-24 | 92.0 | 9.0 | 9.0 | 10.0 | 10.0 | 9.0 | 9.0 | f | NaN | WASHINGTON | f | strict | f | f | 1 | 0.89 |
listings.describe()
| id | scrape_id | host_id | host_listings_count | host_total_listings_count | latitude | longitude | accommodates | bathrooms | bedrooms | beds | square_feet | guests_included | minimum_nights | maximum_nights | availability_30 | availability_60 | availability_90 | availability_365 | number_of_reviews | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | license | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| count | 3.818000e+03 | 3.818000e+03 | 3.818000e+03 | 3816.000000 | 3816.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3802.000000 | 3812.000000 | 3817.000000 | 97.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3818.000000 | 3171.000000 | 3160.000000 | 3165.000000 | 3160.000000 | 3167.000000 | 3163.000000 | 3162.000000 | 0.0 | 3818.000000 | 3191.000000 |
| mean | 5.550111e+06 | 2.016010e+13 | 1.578556e+07 | 7.157757 | 7.157757 | 47.628961 | -122.333103 | 3.349398 | 1.259469 | 1.307712 | 1.735394 | 854.618557 | 1.672603 | 2.369303 | 780.447617 | 16.786276 | 36.814825 | 58.082504 | 244.772656 | 22.223415 | 94.539262 | 9.636392 | 9.556398 | 9.786709 | 9.809599 | 9.608916 | 9.452245 | NaN | 2.946307 | 2.078919 |
| std | 2.962660e+06 | 0.000000e+00 | 1.458382e+07 | 28.628149 | 28.628149 | 0.043052 | 0.031745 | 1.977599 | 0.590369 | 0.883395 | 1.139480 | 671.404893 | 1.311040 | 16.305902 | 1683.589007 | 12.173637 | 23.337541 | 34.063845 | 126.772526 | 37.730892 | 6.606083 | 0.698031 | 0.797274 | 0.595499 | 0.568211 | 0.629053 | 0.750259 | NaN | 5.893029 | 1.822348 |
| min | 3.335000e+03 | 2.016010e+13 | 4.193000e+03 | 1.000000 | 1.000000 | 47.505088 | -122.417219 | 1.000000 | 0.000000 | 0.000000 | 1.000000 | 0.000000 | 0.000000 | 1.000000 | 1.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 20.000000 | 2.000000 | 3.000000 | 2.000000 | 2.000000 | 4.000000 | 2.000000 | NaN | 1.000000 | 0.020000 |
| 25% | 3.258256e+06 | 2.016010e+13 | 3.275204e+06 | 1.000000 | 1.000000 | 47.609418 | -122.354320 | 2.000000 | 1.000000 | 1.000000 | 1.000000 | 420.000000 | 1.000000 | 1.000000 | 60.000000 | 2.000000 | 13.000000 | 28.000000 | 124.000000 | 2.000000 | 93.000000 | 9.000000 | 9.000000 | 10.000000 | 10.000000 | 9.000000 | 9.000000 | NaN | 1.000000 | 0.695000 |
| 50% | 6.118244e+06 | 2.016010e+13 | 1.055814e+07 | 1.000000 | 1.000000 | 47.623601 | -122.328874 | 3.000000 | 1.000000 | 1.000000 | 1.000000 | 750.000000 | 1.000000 | 2.000000 | 1125.000000 | 20.000000 | 46.000000 | 73.000000 | 308.000000 | 9.000000 | 96.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | NaN | 1.000000 | 1.540000 |
| 75% | 8.035127e+06 | 2.016010e+13 | 2.590309e+07 | 3.000000 | 3.000000 | 47.662694 | -122.310800 | 4.000000 | 1.000000 | 2.000000 | 2.000000 | 1200.000000 | 2.000000 | 2.000000 | 1125.000000 | 30.000000 | 59.000000 | 89.000000 | 360.000000 | 26.000000 | 99.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | NaN | 2.000000 | 3.000000 |
| max | 1.034016e+07 | 2.016010e+13 | 5.320861e+07 | 502.000000 | 502.000000 | 47.733358 | -122.240607 | 16.000000 | 8.000000 | 7.000000 | 15.000000 | 3000.000000 | 15.000000 | 1000.000000 | 100000.000000 | 30.000000 | 60.000000 | 90.000000 | 365.000000 | 474.000000 | 100.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | 10.000000 | NaN | 37.000000 | 12.150000 |
We have observed the following about the datasets
- Calendar - This gives us the information whether the property is available for a certain period or not; If it is available the cost involved in blocking the property is also mentioned
- Listings - This dataset tells us about the property. It will also provide information about owner's credibility, property quality, occupancy, etc.
- Reviews - This dataset provides reviews that users gave over time
This section will be used to prepare the data for further analysis.
Feature selection of listing datasets i.e. I will be manually checking the column names and then decide on which one to choose. This dataset will be further used in the analysis
listings.head()
| id | listing_url | scrape_id | last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | notes | transit | thumbnail_url | medium_url | picture_url | xl_picture_url | host_id | host_url | host_name | host_since | host_location | host_about | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | host_thumbnail_url | host_picture_url | host_neighbourhood | host_listings_count | host_total_listings_count | host_verifications | host_has_profile_pic | host_identity_verified | street | neighbourhood | neighbourhood_cleansed | neighbourhood_group_cleansed | city | state | zipcode | market | smart_location | country_code | country | latitude | longitude | is_location_exact | property_type | room_type | accommodates | bathrooms | bedrooms | beds | bed_type | amenities | square_feet | price | weekly_price | monthly_price | security_deposit | cleaning_fee | guests_included | extra_people | minimum_nights | maximum_nights | calendar_updated | has_availability | availability_30 | availability_60 | availability_90 | availability_365 | calendar_last_scraped | number_of_reviews | first_review | last_review | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | requires_license | license | jurisdiction_names | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 241032 | https://www.airbnb.com/rooms/241032 | 20160104002432 | 2016-01-04 | Stylish Queen Anne Apartment | NaN | Make your self at home in this charming one-be... | Make your self at home in this charming one-be... | none | NaN | NaN | NaN | NaN | NaN | https://a1.muscache.com/ac/pictures/67560560/c... | NaN | 956883 | https://www.airbnb.com/users/show/956883 | Maija | 2011-08-11 | Seattle, Washington, United States | I am an artist, interior designer, and run a s... | within a few hours | 96% | 100% | f | https://a0.muscache.com/ac/users/956883/profil... | https://a0.muscache.com/ac/users/956883/profil... | Queen Anne | 3.0 | 3.0 | ['email', 'phone', 'reviews', 'kba'] | t | t | Gilman Dr W, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.636289 | -122.371025 | t | Apartment | Entire home/apt | 4 | 1.0 | 1.0 | 1.0 | Real Bed | {TV,"Cable TV",Internet,"Wireless Internet","A... | NaN | $85.00 | NaN | NaN | NaN | NaN | 2 | $5.00 | 1 | 365 | 4 weeks ago | t | 14 | 41 | 71 | 346 | 2016-01-04 | 207 | 2011-11-01 | 2016-01-02 | 95.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 10.0 | f | NaN | WASHINGTON | f | moderate | f | f | 2 | 4.07 |
| 1 | 953595 | https://www.airbnb.com/rooms/953595 | 20160104002432 | 2016-01-04 | Bright & Airy Queen Anne Apartment | Chemically sensitive? We've removed the irrita... | Beautiful, hypoallergenic apartment in an extr... | Chemically sensitive? We've removed the irrita... | none | Queen Anne is a wonderful, truly functional vi... | What's up with the free pillows? Our home was... | Convenient bus stops are just down the block, ... | https://a0.muscache.com/ac/pictures/14409893/f... | https://a0.muscache.com/im/pictures/14409893/f... | https://a0.muscache.com/ac/pictures/14409893/f... | https://a0.muscache.com/ac/pictures/14409893/f... | 5177328 | https://www.airbnb.com/users/show/5177328 | Andrea | 2013-02-21 | Seattle, Washington, United States | Living east coast/left coast/overseas. Time i... | within an hour | 98% | 100% | t | https://a0.muscache.com/ac/users/5177328/profi... | https://a0.muscache.com/ac/users/5177328/profi... | Queen Anne | 6.0 | 6.0 | ['email', 'phone', 'facebook', 'linkedin', 're... | t | t | 7th Avenue West, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.639123 | -122.365666 | t | Apartment | Entire home/apt | 4 | 1.0 | 1.0 | 1.0 | Real Bed | {TV,Internet,"Wireless Internet",Kitchen,"Free... | NaN | $150.00 | $1,000.00 | $3,000.00 | $100.00 | $40.00 | 1 | $0.00 | 2 | 90 | today | t | 13 | 13 | 16 | 291 | 2016-01-04 | 43 | 2013-08-19 | 2015-12-29 | 96.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | f | NaN | WASHINGTON | f | strict | t | t | 6 | 1.48 |
| 2 | 3308979 | https://www.airbnb.com/rooms/3308979 | 20160104002432 | 2016-01-04 | New Modern House-Amazing water view | New modern house built in 2013. Spectacular s... | Our house is modern, light and fresh with a wa... | New modern house built in 2013. Spectacular s... | none | Upper Queen Anne is a charming neighborhood fu... | Our house is located just 5 short blocks to To... | A bus stop is just 2 blocks away. Easy bus a... | NaN | NaN | https://a2.muscache.com/ac/pictures/b4324e0f-a... | NaN | 16708587 | https://www.airbnb.com/users/show/16708587 | Jill | 2014-06-12 | Seattle, Washington, United States | i love living in Seattle. i grew up in the mi... | within a few hours | 67% | 100% | f | https://a1.muscache.com/ac/users/16708587/prof... | https://a1.muscache.com/ac/users/16708587/prof... | Queen Anne | 2.0 | 2.0 | ['email', 'phone', 'google', 'reviews', 'jumio'] | t | t | West Lee Street, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.629724 | -122.369483 | t | House | Entire home/apt | 11 | 4.5 | 5.0 | 7.0 | Real Bed | {TV,"Cable TV",Internet,"Wireless Internet","A... | NaN | $975.00 | NaN | NaN | $1,000.00 | $300.00 | 10 | $25.00 | 4 | 30 | 5 weeks ago | t | 1 | 6 | 17 | 220 | 2016-01-04 | 20 | 2014-07-30 | 2015-09-03 | 97.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | f | NaN | WASHINGTON | f | strict | f | f | 2 | 1.15 |
| 3 | 7421966 | https://www.airbnb.com/rooms/7421966 | 20160104002432 | 2016-01-04 | Queen Anne Chateau | A charming apartment that sits atop Queen Anne... | NaN | A charming apartment that sits atop Queen Anne... | none | NaN | NaN | NaN | NaN | NaN | https://a0.muscache.com/ac/pictures/94146944/6... | NaN | 9851441 | https://www.airbnb.com/users/show/9851441 | Emily | 2013-11-06 | Seattle, Washington, United States | NaN | NaN | NaN | NaN | f | https://a2.muscache.com/ac/users/9851441/profi... | https://a2.muscache.com/ac/users/9851441/profi... | Queen Anne | 1.0 | 1.0 | ['email', 'phone', 'facebook', 'reviews', 'jum... | t | t | 8th Avenue West, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.638473 | -122.369279 | t | Apartment | Entire home/apt | 3 | 1.0 | 0.0 | 2.0 | Real Bed | {Internet,"Wireless Internet",Kitchen,"Indoor ... | NaN | $100.00 | $650.00 | $2,300.00 | NaN | NaN | 1 | $0.00 | 1 | 1125 | 6 months ago | t | 0 | 0 | 0 | 143 | 2016-01-04 | 0 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | f | NaN | WASHINGTON | f | flexible | f | f | 1 | NaN |
| 4 | 278830 | https://www.airbnb.com/rooms/278830 | 20160104002432 | 2016-01-04 | Charming craftsman 3 bdm house | Cozy family craftman house in beautiful neighb... | Cozy family craftman house in beautiful neighb... | Cozy family craftman house in beautiful neighb... | none | We are in the beautiful neighborhood of Queen ... | Belltown | The nearest public transit bus (D Line) is 2 b... | NaN | NaN | https://a1.muscache.com/ac/pictures/6120468/b0... | NaN | 1452570 | https://www.airbnb.com/users/show/1452570 | Emily | 2011-11-29 | Seattle, Washington, United States | Hi, I live in Seattle, Washington but I'm orig... | within an hour | 100% | NaN | f | https://a0.muscache.com/ac/users/1452570/profi... | https://a0.muscache.com/ac/users/1452570/profi... | Queen Anne | 2.0 | 2.0 | ['email', 'phone', 'facebook', 'reviews', 'kba'] | t | t | 14th Ave W, Seattle, WA 98119, United States | Queen Anne | West Queen Anne | Queen Anne | Seattle | WA | 98119 | Seattle | Seattle, WA | US | United States | 47.632918 | -122.372471 | t | House | Entire home/apt | 6 | 2.0 | 3.0 | 3.0 | Real Bed | {TV,"Cable TV",Internet,"Wireless Internet",Ki... | NaN | $450.00 | NaN | NaN | $700.00 | $125.00 | 6 | $15.00 | 1 | 1125 | 7 weeks ago | t | 30 | 60 | 90 | 365 | 2016-01-04 | 38 | 2012-07-10 | 2015-10-24 | 92.0 | 9.0 | 9.0 | 10.0 | 10.0 | 9.0 | 9.0 | f | NaN | WASHINGTON | f | strict | f | f | 1 | 0.89 |
listings.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3818 entries, 0 to 3817 Data columns (total 92 columns): id 3818 non-null int64 listing_url 3818 non-null object scrape_id 3818 non-null int64 last_scraped 3818 non-null object name 3818 non-null object summary 3641 non-null object space 3249 non-null object description 3818 non-null object experiences_offered 3818 non-null object neighborhood_overview 2786 non-null object notes 2212 non-null object transit 2884 non-null object thumbnail_url 3498 non-null object medium_url 3498 non-null object picture_url 3818 non-null object xl_picture_url 3498 non-null object host_id 3818 non-null int64 host_url 3818 non-null object host_name 3816 non-null object host_since 3816 non-null object host_location 3810 non-null object host_about 2959 non-null object host_response_time 3295 non-null object host_response_rate 3295 non-null object host_acceptance_rate 3045 non-null object host_is_superhost 3816 non-null object host_thumbnail_url 3816 non-null object host_picture_url 3816 non-null object host_neighbourhood 3518 non-null object host_listings_count 3816 non-null float64 host_total_listings_count 3816 non-null float64 host_verifications 3818 non-null object host_has_profile_pic 3816 non-null object host_identity_verified 3816 non-null object street 3818 non-null object neighbourhood 3402 non-null object neighbourhood_cleansed 3818 non-null object neighbourhood_group_cleansed 3818 non-null object city 3818 non-null object state 3818 non-null object zipcode 3811 non-null object market 3818 non-null object smart_location 3818 non-null object country_code 3818 non-null object country 3818 non-null object latitude 3818 non-null float64 longitude 3818 non-null float64 is_location_exact 3818 non-null object property_type 3817 non-null object room_type 3818 non-null object accommodates 3818 non-null int64 bathrooms 3802 non-null float64 bedrooms 3812 non-null float64 beds 3817 non-null float64 bed_type 3818 non-null object amenities 3818 non-null object square_feet 97 non-null float64 price 3818 non-null object weekly_price 2009 non-null object monthly_price 1517 non-null object security_deposit 1866 non-null object cleaning_fee 2788 non-null object guests_included 3818 non-null int64 extra_people 3818 non-null object minimum_nights 3818 non-null int64 maximum_nights 3818 non-null int64 calendar_updated 3818 non-null object has_availability 3818 non-null object availability_30 3818 non-null int64 availability_60 3818 non-null int64 availability_90 3818 non-null int64 availability_365 3818 non-null int64 calendar_last_scraped 3818 non-null object number_of_reviews 3818 non-null int64 first_review 3191 non-null object last_review 3191 non-null object review_scores_rating 3171 non-null float64 review_scores_accuracy 3160 non-null float64 review_scores_cleanliness 3165 non-null float64 review_scores_checkin 3160 non-null float64 review_scores_communication 3167 non-null float64 review_scores_location 3163 non-null float64 review_scores_value 3162 non-null float64 requires_license 3818 non-null object license 0 non-null float64 jurisdiction_names 3818 non-null object instant_bookable 3818 non-null object cancellation_policy 3818 non-null object require_guest_profile_picture 3818 non-null object require_guest_phone_verification 3818 non-null object calculated_host_listings_count 3818 non-null int64 reviews_per_month 3191 non-null float64 dtypes: float64(17), int64(13), object(62) memory usage: 2.7+ MB
On checking the names of columns I decide to keep the following columns for my analysis. Explanation of each will be provided in subsequent steps
'space','experiences_offered','neighborhood_overview','neighbourhood_group_cleansed','latitude','longitude', 'property_type','beds','bed_type','square_feet','weekly_price','monthly_price','host_response_time', 'host_response_rate','host_acceptance_rate','host_is_superhost','neighbourhood_cleansed','room_type', 'accommodates','bathrooms','bedrooms','amenities','price','minimum_nights','cancellation_policy', 'require_guest_profile_picture','require_guest_phone_verification','id','review_scores_rating','review_scores_accuracy', 'review_scores_cleanliness','review_scores_checkin','review_scores_communication','review_scores_location','review_scores_value'
listings1 = listings[['space','experiences_offered','neighborhood_overview','neighbourhood_group_cleansed',
'latitude','longitude','property_type','beds','bed_type','square_feet','weekly_price',
'monthly_price','host_response_time','host_response_rate','host_acceptance_rate',
'host_is_superhost','neighbourhood_cleansed','room_type','accommodates','bathrooms',
'bedrooms','amenities','price','minimum_nights','cancellation_policy',
'require_guest_profile_picture','require_guest_phone_verification','id','review_scores_rating',
'review_scores_accuracy','review_scores_cleanliness','review_scores_checkin',
'review_scores_communication','review_scores_location','review_scores_value']]
listings1.shape
(3818, 35)
On closer look at the data, I found that few columns selected earlier will not be required. Such as
Deleting the above mentioned columns in the cell below
listings1.drop(['weekly_price', 'monthly_price', 'space', 'experiences_offered',
'neighborhood_overview', 'beds', 'square_feet'], axis = 1, inplace = True)
listings1.shape
C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\frame.py:3694: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy errors=errors)
(3818, 28)
Checking missing values by column and then deleting them on inference
#Count NaNs after feature selection
nanCount = listings1.isnull().sum().reset_index()
nanCount.columns = ['index', 'count']
nanCount = nanCount.set_index('index')
nanCount
| count | |
|---|---|
| index | |
| neighbourhood_group_cleansed | 0 |
| latitude | 0 |
| longitude | 0 |
| property_type | 1 |
| bed_type | 0 |
| host_response_time | 523 |
| host_response_rate | 523 |
| host_acceptance_rate | 773 |
| host_is_superhost | 2 |
| neighbourhood_cleansed | 0 |
| room_type | 0 |
| accommodates | 0 |
| bathrooms | 16 |
| bedrooms | 6 |
| amenities | 0 |
| price | 0 |
| minimum_nights | 0 |
| cancellation_policy | 0 |
| require_guest_profile_picture | 0 |
| require_guest_phone_verification | 0 |
| id | 0 |
| review_scores_rating | 647 |
| review_scores_accuracy | 658 |
| review_scores_cleanliness | 653 |
| review_scores_checkin | 658 |
| review_scores_communication | 651 |
| review_scores_location | 655 |
| review_scores_value | 656 |
# Calculate percentage of NaN for each column
nanCount['Total'] = listings1.shape[0]
nanCount['percent'] = np.round(nanCount['count'] * 100 / nanCount['Total'], 2)
# Sort by percentage
nanCount.sort_values(by='percent', ascending=False, inplace=True)
nanCount.head(100)
| count | Total | percent | |
|---|---|---|---|
| index | |||
| host_acceptance_rate | 773 | 3818 | 20.25 |
| review_scores_checkin | 658 | 3818 | 17.23 |
| review_scores_accuracy | 658 | 3818 | 17.23 |
| review_scores_value | 656 | 3818 | 17.18 |
| review_scores_location | 655 | 3818 | 17.16 |
| review_scores_cleanliness | 653 | 3818 | 17.10 |
| review_scores_communication | 651 | 3818 | 17.05 |
| review_scores_rating | 647 | 3818 | 16.95 |
| host_response_time | 523 | 3818 | 13.70 |
| host_response_rate | 523 | 3818 | 13.70 |
| bathrooms | 16 | 3818 | 0.42 |
| bedrooms | 6 | 3818 | 0.16 |
| host_is_superhost | 2 | 3818 | 0.05 |
| property_type | 1 | 3818 | 0.03 |
| require_guest_profile_picture | 0 | 3818 | 0.00 |
| id | 0 | 3818 | 0.00 |
| require_guest_phone_verification | 0 | 3818 | 0.00 |
| neighbourhood_group_cleansed | 0 | 3818 | 0.00 |
| cancellation_policy | 0 | 3818 | 0.00 |
| minimum_nights | 0 | 3818 | 0.00 |
| price | 0 | 3818 | 0.00 |
| latitude | 0 | 3818 | 0.00 |
| accommodates | 0 | 3818 | 0.00 |
| room_type | 0 | 3818 | 0.00 |
| neighbourhood_cleansed | 0 | 3818 | 0.00 |
| bed_type | 0 | 3818 | 0.00 |
| longitude | 0 | 3818 | 0.00 |
| amenities | 0 | 3818 | 0.00 |
# Investigate patterns in the amount of missing data in each column.
nanCount.percent.plot.bar(figsize=(18, 5));
Let's check few columns which have high number of NaNs
listings_temp1 = listings1.groupby('host_acceptance_rate').nunique()
listings_temp1
| neighbourhood_group_cleansed | latitude | longitude | property_type | bed_type | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | neighbourhood_cleansed | room_type | accommodates | bathrooms | bedrooms | amenities | price | minimum_nights | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | id | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| host_acceptance_rate | ||||||||||||||||||||||||||||
| 0% | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 100% | 17 | 3044 | 3044 | 16 | 5 | 4 | 45 | 1 | 2 | 87 | 3 | 15 | 12 | 8 | 2616 | 246 | 17 | 3 | 2 | 2 | 3044 | 42 | 7 | 7 | 8 | 8 | 6 | 7 |
listings_temp2 = listings1.groupby('review_scores_checkin').nunique()
listings_temp2
| neighbourhood_group_cleansed | latitude | longitude | property_type | bed_type | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | neighbourhood_cleansed | room_type | accommodates | bathrooms | bedrooms | amenities | price | minimum_nights | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | id | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| review_scores_checkin | ||||||||||||||||||||||||||||
| 2.0 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 2 |
| 4.0 | 3 | 5 | 5 | 2 | 1 | 3 | 4 | 1 | 1 | 5 | 3 | 4 | 3 | 3 | 5 | 5 | 5 | 2 | 1 | 1 | 5 | 3 | 3 | 3 | 1 | 3 | 3 | 3 |
| 5.0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 6.0 | 6 | 9 | 9 | 3 | 1 | 3 | 4 | 1 | 1 | 9 | 2 | 5 | 1 | 2 | 9 | 9 | 3 | 3 | 2 | 2 | 9 | 4 | 3 | 5 | 1 | 5 | 3 | 4 |
| 7.0 | 6 | 12 | 12 | 3 | 1 | 4 | 8 | 1 | 1 | 8 | 2 | 6 | 2 | 3 | 12 | 9 | 4 | 3 | 2 | 2 | 12 | 9 | 4 | 4 | 1 | 4 | 4 | 4 |
| 8.0 | 12 | 64 | 64 | 4 | 4 | 4 | 20 | 1 | 2 | 30 | 3 | 10 | 7 | 6 | 64 | 44 | 6 | 3 | 2 | 2 | 64 | 25 | 7 | 7 | 1 | 6 | 5 | 6 |
| 9.0 | 16 | 423 | 423 | 9 | 4 | 4 | 32 | 1 | 2 | 72 | 3 | 12 | 11 | 6 | 391 | 129 | 10 | 3 | 2 | 2 | 423 | 31 | 5 | 7 | 1 | 4 | 5 | 6 |
| 10.0 | 17 | 2644 | 2644 | 15 | 5 | 4 | 40 | 2 | 2 | 86 | 3 | 14 | 12 | 8 | 2332 | 248 | 17 | 3 | 2 | 2 | 2644 | 29 | 6 | 7 | 1 | 4 | 6 | 6 |
After checking few columns with high NaNs, I think I should replace them with 0 or mean (either of them should work fine as not many records are having missing values). I will go ahead with feeding 0 to replace missing values here. I hope it doesn't make much of a difference
listings2 = listings1.replace(np.nan, 0)
listings2.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3818 entries, 0 to 3817 Data columns (total 28 columns): neighbourhood_group_cleansed 3818 non-null object latitude 3818 non-null float64 longitude 3818 non-null float64 property_type 3818 non-null object bed_type 3818 non-null object host_response_time 3818 non-null object host_response_rate 3818 non-null object host_acceptance_rate 3818 non-null object host_is_superhost 3818 non-null object neighbourhood_cleansed 3818 non-null object room_type 3818 non-null object accommodates 3818 non-null int64 bathrooms 3818 non-null float64 bedrooms 3818 non-null float64 amenities 3818 non-null object price 3818 non-null object minimum_nights 3818 non-null int64 cancellation_policy 3818 non-null object require_guest_profile_picture 3818 non-null object require_guest_phone_verification 3818 non-null object id 3818 non-null int64 review_scores_rating 3818 non-null float64 review_scores_accuracy 3818 non-null float64 review_scores_cleanliness 3818 non-null float64 review_scores_checkin 3818 non-null float64 review_scores_communication 3818 non-null float64 review_scores_location 3818 non-null float64 review_scores_value 3818 non-null float64 dtypes: float64(11), int64(3), object(14) memory usage: 835.3+ KB
# New dataframe for review scoring and an average overall score (which is in the range of 1-10)
avg_scores = listings2[[u'id', u'neighbourhood_cleansed', u'review_scores_accuracy',u'review_scores_cleanliness',
u'review_scores_checkin', u'review_scores_communication',
u'review_scores_location', u'review_scores_value', u'review_scores_rating']]
avg_scores['Overall_score'] = (avg_scores['review_scores_cleanliness'] + avg_scores['review_scores_cleanliness'] +
avg_scores['review_scores_checkin'] + avg_scores['review_scores_communication'] +
avg_scores['review_scores_location'] + avg_scores['review_scores_value'] +
avg_scores['review_scores_accuracy'])/7
avg_scores.head(10)
C:\ProgramData\Anaconda3\lib\site-packages\ipykernel_launcher.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy if __name__ == '__main__':
| id | neighbourhood_cleansed | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | review_scores_rating | Overall_score | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 241032 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 10.0 | 95.0 | 9.857143 |
| 1 | 953595 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 96.0 | 10.000000 |
| 2 | 3308979 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 97.0 | 10.000000 |
| 3 | 7421966 | West Queen Anne | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 |
| 4 | 278830 | West Queen Anne | 9.0 | 9.0 | 10.0 | 10.0 | 9.0 | 9.0 | 92.0 | 9.285714 |
| 5 | 5956968 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 95.0 | 10.000000 |
| 6 | 1909058 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 99.0 | 10.000000 |
| 7 | 856550 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 10.0 | 97.0 | 9.857143 |
| 8 | 4948745 | West Queen Anne | 10.0 | 9.0 | 10.0 | 9.0 | 10.0 | 10.0 | 97.0 | 9.571429 |
| 9 | 2493658 | West Queen Anne | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 97.0 | 9.857143 |
avg_scores.shape
(3818, 10)
avg_scores1 = avg_scores[['id','Overall_score']]
avg_scores1.head()
| id | Overall_score | |
|---|---|---|
| 0 | 241032 | 9.857143 |
| 1 | 953595 | 10.000000 |
| 2 | 3308979 | 10.000000 |
| 3 | 7421966 | 0.000000 |
| 4 | 278830 | 9.285714 |
listings3 = listings2.merge(avg_scores1, on='id', how='left')
listings3.drop(['review_scores_cleanliness', 'review_scores_rating', 'review_scores_checkin', 'review_scores_communication',
'review_scores_location', 'review_scores_value', 'review_scores_accuracy'], axis = 1, inplace = True)
listings3.shape
(3818, 22)
Checking for categorical variable which holds binary or multi variables. I will then try to wrok accordingly
listings3.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 3818 entries, 0 to 3817 Data columns (total 22 columns): neighbourhood_group_cleansed 3818 non-null object latitude 3818 non-null float64 longitude 3818 non-null float64 property_type 3818 non-null object bed_type 3818 non-null object host_response_time 3818 non-null object host_response_rate 3818 non-null object host_acceptance_rate 3818 non-null object host_is_superhost 3818 non-null object neighbourhood_cleansed 3818 non-null object room_type 3818 non-null object accommodates 3818 non-null int64 bathrooms 3818 non-null float64 bedrooms 3818 non-null float64 amenities 3818 non-null object price 3818 non-null object minimum_nights 3818 non-null int64 cancellation_policy 3818 non-null object require_guest_profile_picture 3818 non-null object require_guest_phone_verification 3818 non-null object id 3818 non-null int64 Overall_score 3818 non-null float64 dtypes: float64(5), int64(3), object(14) memory usage: 686.0+ KB
categorical_col = ['host_is_superhost','require_guest_profile_picture','require_guest_phone_verification', 'property_type',
'neighbourhood_cleansed', 'room_type', 'cancellation_policy', 'bed_type']
# checking for binary and multi variables of categorical features. And splitting them into different buckets.
categorical_binary = []
categorical_multi = []
for feature in categorical_col:
if listings3[feature].nunique() > 2:
categorical_multi.append(feature)
else:
categorical_binary.append(feature)
# Checking the unique values in each of the categorical variables where values are binary
for col in categorical_binary:
print(listings3[col].value_counts())
f 3497 t 321 Name: require_guest_profile_picture, dtype: int64 f 3443 t 375 Name: require_guest_phone_verification, dtype: int64
listings4 = listings3.copy()
# Replacing the binary columns into 0 or 1
listings4['require_guest_profile_picture'].replace(['t', 'f'], [1, 0], inplace=True)
listings4['require_guest_phone_verification'].replace(['t', 'f'], [1, 0], inplace=True)
listings4['host_is_superhost'].replace(['t', 'f'], [1, 0], inplace=True)
# Checking if the values have been converted or not
for col in categorical_binary:
print(listings4[col].value_counts())
0 3497 1 321 Name: require_guest_profile_picture, dtype: int64 0 3443 1 375 Name: require_guest_phone_verification, dtype: int64
# Checking the unique values in each of the categorical variables where values are multi
for col in categorical_multi:
print(listings3[col].value_counts())
f 3038 t 778 0 2 Name: host_is_superhost, dtype: int64 House 1733 Apartment 1708 Townhouse 118 Condominium 91 Loft 40 Bed & Breakfast 37 Other 22 Cabin 21 Bungalow 13 Camper/RV 13 Boat 8 Tent 5 Treehouse 3 Dorm 2 Chalet 2 Yurt 1 0 1 Name: property_type, dtype: int64 Broadway 397 Belltown 234 Wallingford 167 Fremont 158 Minor 135 University District 122 Stevens 119 First Hill 108 Central Business District 103 Lower Queen Anne 94 Greenwood 89 East Queen Anne 82 North Beacon Hill 78 Phinney Ridge 73 Adams 70 Ravenna 67 Mann 67 West Queen Anne 65 West Woodland 64 Columbia City 58 Green Lake 54 North Queen Anne 54 Leschi 53 Atlantic 53 Loyal Heights 52 Mount Baker 50 North Admiral 49 Madrona 47 Eastlake 45 Seward Park 44 Maple Leaf 42 Alki 42 Genesee 34 North Delridge 32 Lawton Park 30 Mid-Beacon Hill 30 Roosevelt 30 Bryant 29 Fairmount Park 29 Pike-Market 28 South Lake Union 27 Whittier Heights 26 Pioneer Square 23 Gatewood 22 Crown Hill 21 Dunlap 20 Matthews Beach 19 Montlake 19 North College Park 19 Wedgwood 18 Sunset Hill 18 Madison Park 18 Rainier Beach 18 Westlake 17 Southeast Magnolia 17 Broadview 17 Yesler Terrace 17 International District 17 Olympic Hills 16 Victory Heights 15 Haller Lake 15 Portage Bay 14 High Point 14 Briarcliff 14 Harrison/Denny-Blaine 14 North Beach/Blue Ridge 14 Bitter Lake 13 Brighton 13 South Delridge 12 Seaview 12 Interbay 11 Highland Park 11 Windermere 10 Laurelhurst 10 Fauntleroy 10 Meadowbrook 9 Georgetown 8 Riverview 8 Cedar Park 8 View Ridge 7 Industrial District 6 Holly Park 6 Arbor Heights 5 Pinehurst 4 South Beacon Hill 4 South Park 3 Roxhill 2 Name: neighbourhood_cleansed, dtype: int64 Entire home/apt 2541 Private room 1160 Shared room 117 Name: room_type, dtype: int64 strict 1417 moderate 1251 flexible 1150 Name: cancellation_policy, dtype: int64 Real Bed 3657 Futon 74 Pull-out Sofa 47 Airbed 27 Couch 13 Name: bed_type, dtype: int64
Re-encode categorical variable(s) to be kept in the analysis. Among the 5 categorical variables, hot-encoding only 3 makes sense
room_type = listings4.room_type.str.get_dummies(sep=",")
room_type.shape
(3818, 3)
cancellation_policy = listings4.cancellation_policy.str.get_dummies(sep=",")
cancellation_policy.shape
(3818, 3)
bed_type = listings4.bed_type.str.get_dummies(sep=",")
bed_type.shape
(3818, 5)
Combining the newly created datasets to the main datasets we have been following up
listings5 = pd.concat([listings4, cancellation_policy, room_type, bed_type],axis=1)
listings5.shape
(3818, 33)
#Change price to number
listings5['price'] = listings5['price'].replace(np.nan, 0)
listings5['price'] = listings5['price'].replace('[\$,]', '', regex=True).astype(float)
# Remove percentage symbol
listings5['host_response_rate'] = listings5['host_response_rate'].replace('[\%,]', '', regex=True).astype(float)
listings5['host_acceptance_rate'] = listings5['host_acceptance_rate'].replace('[\%,]', '', regex=True).astype(float)
# Amenities column is filled with many values. Let's see if we can split it or not
#print(listings5['amenities'].value_counts())
#Too many so not printing
listings5['amenities'] = listings5.amenities.str.replace("[{}]", "")
amenities = listings5.amenities.str.get_dummies(sep = ",")
amenities.shape
(3818, 41)
amenities.head()
| "24-Hour Check-in" | "Air Conditioning" | "Buzzer/Wireless Intercom" | "Cable TV" | "Carbon Monoxide Detector" | "Elevator in Building" | "Family/Kid Friendly" | "Fire Extinguisher" | "First Aid Kit" | "Free Parking on Premises" | "Hair Dryer" | "Hot Tub" | "Indoor Fireplace" | "Laptop Friendly Workspace" | "Lock on Bedroom Door" | "Other pet(s)" | "Pets Allowed" | "Pets live on this property" | "Safety Card" | "Smoke Detector" | "Smoking Allowed" | "Suitable for Events" | "Washer / Dryer" | "Wheelchair Accessible" | "Wireless Internet" | Breakfast | Cat(s) | Dog(s) | Doorman | Dryer | Essentials | Gym | Hangers | Heating | Internet | Iron | Kitchen | Pool | Shampoo | TV | Washer | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 |
| 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 |
| 2 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 |
| 3 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 |
| 4 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 |
#Let's see how many cells does each of the amenities fill up
#Sum up values for each of the amenities
amenities_temp = pd.DataFrame(amenities.sum())
amenities_temp.reset_index(inplace=True)
# Calculate percentage of sum_of_values for each column
amenities_temp['percent'] = amenities_temp[0]/amenities_temp.shape[0]
# Sort by percentage
amenities_temp.sort_values(by='percent', ascending=True, inplace=True)
amenities_temp.head(100)
| index | 0 | percent | |
|---|---|---|---|
| 22 | "Washer / Dryer" | 2 | 0.048780 |
| 15 | "Other pet(s)" | 51 | 1.243902 |
| 20 | "Smoking Allowed" | 82 | 2.000000 |
| 28 | Doorman | 85 | 2.073171 |
| 14 | "Lock on Bedroom Door" | 100 | 2.439024 |
| 37 | Pool | 159 | 3.878049 |
| 21 | "Suitable for Events" | 209 | 5.097561 |
| 25 | Breakfast | 291 | 7.097561 |
| 23 | "Wheelchair Accessible" | 300 | 7.317073 |
| 11 | "Hot Tub" | 303 | 7.390244 |
| 26 | Cat(s) | 382 | 9.317073 |
| 31 | Gym | 442 | 10.780488 |
| 16 | "Pets Allowed" | 472 | 11.512195 |
| 27 | Dog(s) | 509 | 12.414634 |
| 2 | "Buzzer/Wireless Intercom" | 538 | 13.121951 |
| 0 | "24-Hour Check-in" | 616 | 15.024390 |
| 1 | "Air Conditioning" | 677 | 16.512195 |
| 18 | "Safety Card" | 727 | 17.731707 |
| 35 | Iron | 742 | 18.097561 |
| 13 | "Laptop Friendly Workspace" | 745 | 18.170732 |
| 10 | "Hair Dryer" | 774 | 18.878049 |
| 5 | "Elevator in Building" | 785 | 19.146341 |
| 32 | Hangers | 846 | 20.634146 |
| 17 | "Pets live on this property" | 883 | 21.536585 |
| 12 | "Indoor Fireplace" | 886 | 21.609756 |
| 3 | "Cable TV" | 1446 | 35.268293 |
| 8 | "First Aid Kit" | 1680 | 40.975610 |
| 6 | "Family/Kid Friendly" | 1963 | 47.878049 |
| 9 | "Free Parking on Premises" | 2167 | 52.853659 |
| 7 | "Fire Extinguisher" | 2196 | 53.560976 |
| 4 | "Carbon Monoxide Detector" | 2485 | 60.609756 |
| 39 | TV | 2574 | 62.780488 |
| 38 | Shampoo | 2670 | 65.121951 |
| 34 | Internet | 2811 | 68.560976 |
| 40 | Washer | 2992 | 72.975610 |
| 29 | Dryer | 2997 | 73.097561 |
| 30 | Essentials | 3237 | 78.951220 |
| 19 | "Smoke Detector" | 3281 | 80.024390 |
| 36 | Kitchen | 3423 | 83.487805 |
| 33 | Heating | 3627 | 88.463415 |
| 24 | "Wireless Internet" | 3667 | 89.439024 |
# Will delete the columns where presence of the amenities is less than 10%. If we keep them, it might skew the model
amenities_col_del = list(amenities_temp[amenities_temp['percent'] <= 10]['index'])
amenities_col_del
['"Washer / Dryer"', '"Other pet(s)"', '"Smoking Allowed"', 'Doorman', '"Lock on Bedroom Door"', 'Pool', '"Suitable for Events"', 'Breakfast', '"Wheelchair Accessible"', '"Hot Tub"', 'Cat(s)']
amenities.drop(amenities_col_del, axis = 1, inplace = True)
amenities.shape
(3818, 30)
Combining the amenities information with the main dataset that we have been following
listings6 = pd.concat([listings5, amenities],axis=1)
listings6.shape
(3818, 63)
listings6.head()
| neighbourhood_group_cleansed | latitude | longitude | property_type | bed_type | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | neighbourhood_cleansed | room_type | accommodates | bathrooms | bedrooms | amenities | price | minimum_nights | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | id | Overall_score | flexible | moderate | strict | Entire home/apt | Private room | Shared room | Airbed | Couch | Futon | Pull-out Sofa | Real Bed | "24-Hour Check-in" | "Air Conditioning" | "Buzzer/Wireless Intercom" | "Cable TV" | "Carbon Monoxide Detector" | "Elevator in Building" | "Family/Kid Friendly" | "Fire Extinguisher" | "First Aid Kit" | "Free Parking on Premises" | "Hair Dryer" | "Indoor Fireplace" | "Laptop Friendly Workspace" | "Pets Allowed" | "Pets live on this property" | "Safety Card" | "Smoke Detector" | "Wireless Internet" | Dog(s) | Dryer | Essentials | Gym | Hangers | Heating | Internet | Iron | Kitchen | Shampoo | TV | Washer | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Queen Anne | 47.636289 | -122.371025 | Apartment | Real Bed | within a few hours | 96.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 1 | moderate | 0 | 0 | 241032 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1 | Queen Anne | 47.639123 | -122.365666 | Apartment | Real Bed | within an hour | 98.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | strict | 1 | 1 | 953595 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2 | Queen Anne | 47.629724 | -122.369483 | House | Real Bed | within a few hours | 67.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 11 | 4.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 975.0 | 4 | strict | 0 | 0 | 3308979 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3 | Queen Anne | 47.638473 | -122.369279 | Apartment | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 100.0 | 1 | flexible | 0 | 0 | 7421966 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 4 | Queen Anne | 47.632918 | -122.372471 | House | Real Bed | within an hour | 100.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 1 | strict | 0 | 0 | 278830 | 9.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
def clean_data(df):
"""
Perform feature trimming, re-encoding, and engineering for listings dataset
INPUT: Dataframes for listing
OUTPUT: Trimmed and cleaned listing dataframe
"""
#new dataframe after feature selection
df = df[['neighbourhood_group_cleansed',
'latitude','longitude','property_type','beds','bed_type','host_response_time','host_response_rate','host_acceptance_rate',
'host_is_superhost','neighbourhood_cleansed','room_type','accommodates','bathrooms','bedrooms',
'amenities','price','minimum_nights','cancellation_policy','require_guest_profile_picture',
'require_guest_phone_verification','id','review_scores_rating','review_scores_accuracy',
'review_scores_cleanliness','review_scores_checkin','review_scores_communication','review_scores_location',
'review_scores_value']]
# Calculate percentage of NaN for each column
nanCount['Total'] = df.shape[0]
nanCount['percent'] = np.round(nanCount['count'] * 100 / nanCount['Total'], 2)
# Sort by percentage
nanCount.sort_values(by='percent', ascending=False, inplace=True)
#Replacing NaNs with 0 isntead of removing the columns altogether - do check if it doesn't meet your requirement
df = df.replace(np.nan, 0)
df['Overall_score'] = (avg_scores['review_scores_cleanliness'] + avg_scores['review_scores_cleanliness'] +
avg_scores['review_scores_checkin'] + avg_scores['review_scores_communication'] +
avg_scores['review_scores_location'] + avg_scores['review_scores_value'] +
avg_scores['review_scores_accuracy'])/7
df.drop(['review_scores_cleanliness', 'review_scores_rating', 'review_scores_checkin', 'review_scores_communication',
'review_scores_location', 'review_scores_value', 'review_scores_accuracy'], axis = 1, inplace = True)
# checking for binary and multi variables of categorical features. And splitting them into different buckets.
categorical_col = ['host_is_superhost','require_guest_profile_picture','require_guest_phone_verification', 'property_type',
'neighbourhood_cleansed', 'room_type', 'cancellation_policy', 'bed_type']
categorical_binary = []
categorical_multi = []
for feature in categorical_col:
if listings3[feature].nunique() > 2:
categorical_multi.append(feature)
else:
categorical_binary.append(feature)
# Replacing the binary columns into 0 or 1
df['require_guest_profile_picture'].replace(['t', 'f'], [1, 0], inplace=True)
df['require_guest_phone_verification'].replace(['t', 'f'], [1, 0], inplace=True)
df['host_is_superhost'].replace(['t', 'f'], [1, 0], inplace=True)
# Hot encoding the other categorical variables
room_type = df.room_type.str.get_dummies(sep=",")
cancellation_policy = df.cancellation_policy.str.get_dummies(sep=",")
bed_type = df.bed_type.str.get_dummies(sep=",")
#Change price to number
df['price'] = df['price'].replace(np.nan, 0)
df['price'] = df['price'].replace('[\$,]', '', regex=True).astype(float)
# Remove percentage symbol
df['host_response_rate'] = df['host_response_rate'].replace('[\%,]', '', regex=True).astype(float)
df['host_acceptance_rate'] = df['host_acceptance_rate'].replace('[\%,]', '', regex=True).astype(float)
df['amenities'] = df.amenities.str.replace("[{}]", "")
amenities = df.amenities.str.get_dummies(sep = ",")
# Will delete the columns where presence of the amenities is less than 10%. If we keep them, it might skew the model
amenities_temp = pd.DataFrame(amenities.sum())
amenities_temp.reset_index(inplace=True)
amenities_temp['percent'] = amenities_temp[0]/amenities_temp.shape[0]
amenities_col_del = list(amenities_temp[amenities_temp['percent'] <= 10]['index'])
amenities.drop(amenities_col_del, axis = 1, inplace = True)
df = pd.concat([df, room_type, cancellation_policy, bed_type, amenities],axis=1)
return df
listings = pd.read_csv('./Seattle data/listings.csv')
clean_data(listings)
| neighbourhood_group_cleansed | latitude | longitude | property_type | beds | bed_type | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | neighbourhood_cleansed | room_type | accommodates | bathrooms | bedrooms | amenities | price | minimum_nights | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | id | Overall_score | Entire home/apt | Private room | Shared room | flexible | moderate | strict | Airbed | Couch | Futon | Pull-out Sofa | Real Bed | "24-Hour Check-in" | "Air Conditioning" | "Buzzer/Wireless Intercom" | "Cable TV" | "Carbon Monoxide Detector" | "Elevator in Building" | "Family/Kid Friendly" | "Fire Extinguisher" | "First Aid Kit" | "Free Parking on Premises" | "Hair Dryer" | "Indoor Fireplace" | "Laptop Friendly Workspace" | "Pets Allowed" | "Pets live on this property" | "Safety Card" | "Smoke Detector" | "Wireless Internet" | Dog(s) | Dryer | Essentials | Gym | Hangers | Heating | Internet | Iron | Kitchen | Shampoo | TV | Washer | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Queen Anne | 47.636289 | -122.371025 | Apartment | 1.0 | Real Bed | within a few hours | 96.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 1 | moderate | 0 | 0 | 241032 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1 | Queen Anne | 47.639123 | -122.365666 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | strict | 1 | 1 | 953595 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2 | Queen Anne | 47.629724 | -122.369483 | House | 7.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 11 | 4.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 975.0 | 4 | strict | 0 | 0 | 3308979 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3 | Queen Anne | 47.638473 | -122.369279 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 100.0 | 1 | flexible | 0 | 0 | 7421966 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 4 | Queen Anne | 47.632918 | -122.372471 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 1 | strict | 0 | 0 | 278830 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 5 | Queen Anne | 47.630525 | -122.366174 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 120.0 | 1 | strict | 0 | 0 | 5956968 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 6 | Queen Anne | 47.636605 | -122.368519 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 80.0 | 3 | moderate | 0 | 0 | 1909058 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 7 | Queen Anne | 47.640161 | -122.375856 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Pets live on this propert... | 60.0 | 2 | strict | 1 | 1 | 856550 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 8 | Queen Anne | 47.632410 | -122.357216 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 3 | strict | 0 | 0 | 4948745 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 9 | Queen Anne | 47.637492 | -122.366889 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | strict | 1 | 1 | 2493658 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 10 | Queen Anne | 47.635482 | -122.358478 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 3 | moderate | 1 | 0 | 175576 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 11 | Queen Anne | 47.637214 | -122.360046 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 99.0 | 3 | strict | 0 | 0 | 4454295 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 12 | Queen Anne | 47.635546 | -122.373171 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 245.0 | 3 | moderate | 0 | 0 | 3883392 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 13 | Queen Anne | 47.629507 | -122.367629 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 2 | strict | 0 | 0 | 8889257 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 14 | Queen Anne | 47.639203 | -122.365863 | House | 15.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 16 | 3.5 | 6.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 461.0 | 3 | strict | 0 | 0 | 5680462 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 15 | Queen Anne | 47.635650 | -122.372893 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,Kitchen,"Free Parking o... | 109.0 | 3 | strict | 0 | 0 | 8988178 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 16 | Queen Anne | 47.626200 | -122.366602 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets Allowed",Br... | 66.0 | 1 | moderate | 0 | 0 | 3245876 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 17 | Queen Anne | 47.640646 | -122.372406 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 99.0 | 2 | moderate | 0 | 0 | 4933447 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 18 | Queen Anne | 47.639776 | -122.372235 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 1 | flexible | 0 | 0 | 7735464 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 19 | Queen Anne | 47.636025 | -122.358694 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 10 | 3.5 | 5.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 700.0 | 3 | flexible | 0 | 0 | 6291829 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 20 | Queen Anne | 47.627940 | -122.364959 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 1 | flexible | 0 | 0 | 9218403 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 21 | Queen Anne | 47.636374 | -122.361033 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Private room | 3 | 1.5 | 1.0 | "Cable TV",Internet,"Wireless Internet","Free ... | 99.0 | 1 | moderate | 0 | 0 | 4125779 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 22 | Queen Anne | 47.635632 | -122.358881 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 450.0 | 4 | flexible | 0 | 0 | 8942678 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 23 | Queen Anne | 47.633394 | -122.371920 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 75.0 | 1 | flexible | 0 | 0 | 10106055 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 24 | Queen Anne | 47.638517 | -122.369581 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 5 | 2.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 600.0 | 3 | moderate | 0 | 0 | 6362362 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 25 | Queen Anne | 47.631397 | -122.367767 | House | 5.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 450.0 | 4 | strict | 0 | 0 | 3544550 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 26 | Queen Anne | 47.638752 | -122.367973 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 150.0 | 1 | flexible | 0 | 0 | 9025039 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 27 | Queen Anne | 47.639266 | -122.374726 | Camper/RV | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Pets live on this propert... | 45.0 | 2 | strict | 1 | 1 | 3200646 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 28 | Queen Anne | 47.629907 | -122.368948 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 300.0 | 2 | moderate | 0 | 0 | 8859380 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 29 | Queen Anne | 47.639816 | -122.374338 | Apartment | 2.0 | Real Bed | within an hour | 71.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 80.0 | 2 | strict | 0 | 0 | 4520099 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 30 | Queen Anne | 47.639008 | -122.365320 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 175.0 | 2 | strict | 1 | 1 | 2481869 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 31 | Queen Anne | 47.635085 | -122.364443 | House | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 325.0 | 2 | strict | 0 | 0 | 1110749 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 32 | Queen Anne | 47.640633 | -122.372709 | House | 2.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 4 | flexible | 0 | 0 | 5978498 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 33 | Queen Anne | 47.638121 | -122.375790 | House | 3.0 | Real Bed | within an hour | 71.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 7 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 222.0 | 2 | strict | 0 | 0 | 5021081 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 34 | Queen Anne | 47.629816 | -122.366212 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 159.0 | 1 | strict | 0 | 0 | 1686930 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 35 | Queen Anne | 47.639810 | -122.373801 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 125.0 | 2 | moderate | 0 | 0 | 7680289 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 36 | Queen Anne | 47.635570 | -122.361653 | House | 3.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 8 | 3.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 348.0 | 3 | strict | 0 | 0 | 7207641 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 37 | Queen Anne | 47.634979 | -122.358869 | House | 1.0 | Futon | a few days or more | 31.0 | 100.0 | 0 | West Queen Anne | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 45.0 | 1 | flexible | 0 | 0 | 5062445 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 38 | Queen Anne | 47.639362 | -122.372403 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 8925878 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 39 | Queen Anne | 47.634616 | -122.358023 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 3 | flexible | 0 | 0 | 6389657 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 40 | Queen Anne | 47.638001 | -122.361005 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | moderate | 0 | 0 | 4218733 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 41 | Queen Anne | 47.631996 | -122.371658 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 148.0 | 3 | strict | 1 | 1 | 2715623 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 42 | Queen Anne | 47.638686 | -122.370800 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 2 | moderate | 0 | 0 | 1392332 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 43 | Queen Anne | 47.633650 | -122.360450 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 3 | 1.5 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 150.0 | 2 | moderate | 0 | 0 | 7308567 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 44 | Queen Anne | 47.634300 | -122.357060 | House | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | West Queen Anne | Private room | 5 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Free Parking o... | 150.0 | 1 | flexible | 0 | 0 | 6575380 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
| 45 | Queen Anne | 47.628344 | -122.366405 | Apartment | 1.0 | Futon | within a day | 50.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 6004058 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 46 | Queen Anne | 47.635394 | -122.368991 | Bungalow | 4.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 10 | 3.0 | 4.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 349.0 | 1 | strict | 0 | 0 | 9550869 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 47 | Queen Anne | 47.638035 | -122.360910 | Bungalow | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 110.0 | 2 | moderate | 0 | 0 | 8515408 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 48 | Queen Anne | 47.639332 | -122.361599 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 160.0 | 2 | moderate | 0 | 0 | 5383192 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 49 | Queen Anne | 47.635308 | -122.366532 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 130.0 | 3 | moderate | 0 | 0 | 1112092 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 50 | Queen Anne | 47.637375 | -122.369411 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | moderate | 0 | 0 | 7772661 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 51 | Queen Anne | 47.638298 | -122.373779 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Washer,Dryer,Essen... | 100.0 | 1 | flexible | 0 | 0 | 9254900 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 52 | Queen Anne | 47.631753 | -122.371272 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 137.0 | 2 | moderate | 0 | 0 | 7714294 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 53 | Queen Anne | 47.638581 | -122.375326 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Private room | 3 | 1.0 | 1.0 | "Air Conditioning",Kitchen,"Free Parking on Pr... | 20.0 | 1 | flexible | 0 | 0 | 10310373 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 54 | Queen Anne | 47.637884 | -122.367371 | Townhouse | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 4 | strict | 0 | 0 | 9368342 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 55 | Queen Anne | 47.637517 | -122.360812 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 145.0 | 2 | moderate | 0 | 0 | 6361863 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 56 | Queen Anne | 47.636874 | -122.372272 | Townhouse | 1.0 | Futon | within a day | 70.0 | 100.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 1 | flexible | 0 | 0 | 8105221 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 57 | Queen Anne | 47.632563 | -122.367223 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 3 | moderate | 0 | 0 | 3269390 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 58 | Queen Anne | 47.635322 | -122.366121 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 4 | 2.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 400.0 | 2 | moderate | 0 | 0 | 4566393 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 59 | Queen Anne | 47.632634 | -122.369318 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | West Queen Anne | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 2 | moderate | 0 | 0 | 9282409 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 60 | Queen Anne | 47.632600 | -122.369952 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 70.0 | 1 | flexible | 0 | 0 | 8095168 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 61 | Queen Anne | 47.641052 | -122.375082 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 90.0 | 2 | strict | 1 | 1 | 2746782 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 62 | Queen Anne | 47.631401 | -122.367690 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Free Parking o... | 80.0 | 1 | flexible | 0 | 0 | 6424982 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 63 | Queen Anne | 47.641525 | -122.376150 | Camper/RV | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Pets live on this propert... | 60.0 | 2 | strict | 1 | 1 | 762029 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 64 | Queen Anne | 47.635311 | -122.363506 | House | 2.0 | Real Bed | within an hour | 67.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 175.0 | 1 | moderate | 0 | 0 | 8988281 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 65 | Ballard | 47.669327 | -122.392594 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 170.0 | 4 | strict | 0 | 0 | 7077910 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 66 | Ballard | 47.674074 | -122.393864 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 3 | moderate | 0 | 0 | 3772674 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 67 | Ballard | 47.673628 | -122.389302 | House | 7.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 12 | 3.5 | 5.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 465.0 | 3 | strict | 0 | 0 | 7021906 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 68 | Ballard | 47.668460 | -122.379516 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 175.0 | 1 | flexible | 0 | 0 | 7618605 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 69 | Ballard | 47.670662 | -122.378666 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 50.0 | 1 | flexible | 0 | 0 | 10234558 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 70 | Ballard | 47.672646 | -122.389333 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | 60.0 | 1 | flexible | 0 | 0 | 7021702 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 71 | Ballard | 47.673175 | -122.382260 | House | 1.0 | Pull-out Sofa | within a few hours | 100.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 59.0 | 1 | flexible | 0 | 0 | 7680439 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 72 | Ballard | 47.667933 | -122.378652 | Apartment | 4.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Adams | Private room | 4 | 1.0 | 1.0 | TV,"Air Conditioning","Wheelchair Accessible",... | 47.0 | 1 | strict | 0 | 1 | 4258515 | 8.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 73 | Ballard | 47.672969 | -122.397338 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 145.0 | 2 | moderate | 1 | 1 | 1148517 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 74 | Ballard | 47.668627 | -122.389496 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 70.0 | 1 | flexible | 0 | 0 | 2487892 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 75 | Ballard | 47.670111 | -122.393869 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Pe... | 55.0 | 2 | moderate | 0 | 0 | 3038772 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 76 | Ballard | 47.671691 | -122.385239 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Adams | Private room | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 2 | moderate | 0 | 0 | 699460 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 77 | Ballard | 47.670836 | -122.392537 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Pets live o... | 125.0 | 1 | flexible | 0 | 0 | 4085439 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 |
| 78 | Ballard | 47.670887 | -122.393029 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 65.0 | 1 | moderate | 0 | 0 | 8053990 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 79 | Ballard | 47.670115 | -122.392994 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Adams | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Essent... | 25.0 | 1 | flexible | 0 | 0 | 7011773 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
| 80 | Ballard | 47.674308 | -122.376742 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 40.0 | 5 | strict | 0 | 0 | 2467550 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 81 | Ballard | 47.671250 | -122.382639 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 1 | moderate | 0 | 0 | 2686374 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 82 | Ballard | 47.668692 | -122.396089 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 3 | strict | 0 | 0 | 1956274 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 83 | Ballard | 47.671806 | -122.388047 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Adams | Private room | 2 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 55.0 | 1 | flexible | 0 | 0 | 8537192 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 84 | Ballard | 47.671418 | -122.385385 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | Adams | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 129.0 | 5 | strict | 0 | 0 | 5919096 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 85 | Ballard | 47.668749 | -122.383870 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 100.0 | 1 | strict | 0 | 0 | 6516529 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 86 | Ballard | 47.672682 | -122.387731 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 150.0 | 2 | moderate | 0 | 0 | 3294243 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 87 | Ballard | 47.669682 | -122.390988 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Smoke De... | 50.0 | 1 | flexible | 0 | 0 | 10210971 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 88 | Ballard | 47.675044 | -122.382715 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Adams | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 5 | moderate | 0 | 0 | 3584790 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 89 | Ballard | 47.667979 | -122.382105 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 2 | strict | 0 | 0 | 1266459 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 90 | Ballard | 47.673250 | -122.387332 | Bungalow | 3.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 105.0 | 2 | flexible | 0 | 0 | 9098059 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 91 | Ballard | 47.675533 | -122.376324 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 7 | 4.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 218.0 | 14 | strict | 0 | 0 | 408526 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 92 | Ballard | 47.675708 | -122.387559 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 5 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 80.0 | 1 | moderate | 0 | 0 | 4118282 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 93 | Ballard | 47.674771 | -122.385830 | Apartment | 1.0 | Real Bed | within an hour | 67.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 126.0 | 2 | moderate | 0 | 0 | 6813483 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 94 | Ballard | 47.669874 | -122.387717 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 115.0 | 1 | strict | 0 | 0 | 6590264 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 95 | Ballard | 47.670976 | -122.387825 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 225.0 | 2 | flexible | 0 | 0 | 2650482 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 96 | Ballard | 47.673339 | -122.395120 | Cabin | 1.0 | Futon | within an hour | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 89.0 | 2 | moderate | 0 | 0 | 20927 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 97 | Ballard | 47.671005 | -122.381381 | House | 5.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Adams | Entire home/apt | 8 | 2.5 | 3.0 | "Cable TV","Wireless Internet","Air Conditioni... | 225.0 | 3 | strict | 1 | 1 | 4395578 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 98 | Ballard | 47.671704 | -122.376338 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Entire home/apt | 1 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 50.0 | 1 | flexible | 0 | 0 | 4995903 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 99 | Ballard | 47.671760 | -122.390020 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 134.0 | 3 | strict | 0 | 0 | 5549211 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 100 | Ballard | 47.674819 | -122.387521 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 3 | moderate | 0 | 0 | 8240758 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 101 | Ballard | 47.673004 | -122.385005 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 65.0 | 1 | moderate | 0 | 0 | 6856295 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 |
| 102 | Ballard | 47.670395 | -122.393897 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 375.0 | 1 | moderate | 0 | 0 | 6881188 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 103 | Ballard | 47.675822 | -122.389710 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 97.0 | 2 | strict | 0 | 0 | 1579615 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 104 | Ballard | 47.672284 | -122.382314 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 145.0 | 2 | moderate | 0 | 0 | 3766866 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 105 | Ballard | 47.672272 | -122.384132 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | Adams | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 129.0 | 5 | strict | 0 | 0 | 2406966 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 106 | Ballard | 47.675750 | -122.376580 | House | 4.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Adams | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 197.0 | 4 | strict | 0 | 0 | 4872699 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 107 | Ballard | 47.672602 | -122.388441 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 120.0 | 2 | moderate | 0 | 0 | 5470629 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 108 | Ballard | 47.666767 | -122.381243 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | flexible | 0 | 0 | 2950213 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 109 | Ballard | 47.675501 | -122.388906 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 135.0 | 1 | moderate | 0 | 0 | 9015088 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 110 | Ballard | 47.675758 | -122.378798 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 1 | Adams | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 70.0 | 1 | moderate | 0 | 0 | 3979496 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 111 | Ballard | 47.667801 | -122.388300 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 150.0 | 2 | flexible | 0 | 0 | 7501919 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 112 | Ballard | 47.669371 | -122.376288 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Adams | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 200.0 | 2 | moderate | 0 | 0 | 4732995 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 113 | Ballard | 47.668961 | -122.393877 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 60.0 | 1 | moderate | 0 | 0 | 7134759 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 114 | Ballard | 47.671688 | -122.392559 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Entire home/apt | 5 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 180.0 | 5 | strict | 0 | 0 | 4532538 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 115 | Ballard | 47.671810 | -122.383437 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 69.0 | 1 | moderate | 0 | 0 | 7534398 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 116 | Ballard | 47.665022 | -122.382797 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Pets Allowed",... | 90.0 | 1 | flexible | 0 | 0 | 9387189 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 117 | Ballard | 47.668989 | -122.395145 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | 80.0 | 1 | flexible | 0 | 0 | 6337492 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 118 | Ballard | 47.669354 | -122.390348 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Adams | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 65.0 | 1 | flexible | 0 | 0 | 10231701 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 119 | Ballard | 47.671666 | -122.377912 | House | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | Adams | Entire home/apt | 5 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 4 | moderate | 0 | 0 | 1609922 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 120 | Ballard | 47.670581 | -122.382211 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 6 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 195.0 | 1 | moderate | 0 | 0 | 4236723 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 121 | Ballard | 47.672109 | -122.383589 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 149.0 | 1 | flexible | 0 | 0 | 7843837 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 122 | Ballard | 47.671458 | -122.379174 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 1 | Adams | Entire home/apt | 5 | 3.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 224.0 | 3 | strict | 0 | 0 | 3076065 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 123 | Ballard | 47.671560 | -122.382704 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 115.0 | 3 | strict | 0 | 0 | 6423204 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 124 | Ballard | 47.672835 | -122.387472 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Adams | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 55.0 | 1 | flexible | 0 | 0 | 8338849 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 125 | Ballard | 47.673971 | -122.389381 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 8 | 2.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 338.0 | 3 | strict | 0 | 0 | 6401209 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 126 | Ballard | 47.673607 | -122.393803 | House | 1.0 | Futon | within an hour | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 79.0 | 2 | moderate | 0 | 0 | 20928 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 127 | Ballard | 47.669399 | -122.389254 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Adams | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 80.0 | 1 | moderate | 0 | 0 | 3344977 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 128 | Ballard | 47.672177 | -122.390362 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Heating,"Smoke Detector... | 85.0 | 2 | moderate | 0 | 0 | 7604621 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 129 | Ballard | 47.673500 | -122.386964 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 80.0 | 2 | moderate | 0 | 0 | 3303978 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 130 | Ballard | 47.669344 | -122.386539 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 49.0 | 1 | moderate | 0 | 0 | 7067082 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 131 | Ballard | 47.671922 | -122.380657 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 4 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 1 | moderate | 0 | 0 | 3121829 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 132 | Ballard | 47.669345 | -122.396973 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Adams | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 1 | flexible | 0 | 0 | 2539881 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 133 | Ballard | 47.667464 | -122.378255 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Adams | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,"First Aid... | 75.0 | 2 | moderate | 0 | 0 | 3678718 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 134 | Ballard | 47.671812 | -122.388981 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Adams | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Pe... | 57.0 | 2 | moderate | 0 | 0 | 4694479 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 135 | Ballard | 47.670820 | -122.370511 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 99.0 | 2 | moderate | 0 | 0 | 6646843 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 136 | Ballard | 47.663734 | -122.362080 | Apartment | 1.0 | Futon | within a day | 63.0 | 100.0 | 0 | West Woodland | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 2 | moderate | 0 | 0 | 1364440 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 137 | Ballard | 47.667597 | -122.364702 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 96.0 | 2 | strict | 0 | 0 | 1781873 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 138 | Ballard | 47.670532 | -122.365318 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 1 | moderate | 0 | 0 | 4138423 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 139 | Ballard | 47.666767 | -122.368824 | House | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Free Parking on ... | 79.0 | 1 | strict | 0 | 0 | 5562674 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 140 | Ballard | 47.672354 | -122.366175 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 115.0 | 3 | strict | 0 | 0 | 1789341 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 141 | Ballard | 47.665837 | -122.370132 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 10 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 1 | strict | 0 | 0 | 4672934 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 142 | Ballard | 47.674333 | -122.375678 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Woodland | Entire home/apt | 6 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 295.0 | 2 | strict | 0 | 0 | 4550099 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 143 | Ballard | 47.672692 | -122.373559 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 70.0 | 2 | moderate | 0 | 0 | 1198799 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 144 | Ballard | 47.675291 | -122.370474 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | West Woodland | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 53.0 | 14 | flexible | 0 | 0 | 5308429 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 145 | Ballard | 47.668993 | -122.362860 | House | 2.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 2 | flexible | 0 | 0 | 2769088 | 7.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 146 | Ballard | 47.668795 | -122.361613 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 225.0 | 1 | flexible | 0 | 0 | 7603135 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 147 | Ballard | 47.673882 | -122.374626 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 35.0 | 1 | strict | 0 | 0 | 9374365 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 148 | Ballard | 47.665787 | -122.361992 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | moderate | 0 | 0 | 6106498 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 149 | Ballard | 47.672283 | -122.373162 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 45.0 | 1 | strict | 0 | 0 | 9331449 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 150 | Ballard | 47.668354 | -122.361139 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning","Wheelc... | 79.0 | 1 | flexible | 0 | 0 | 8799162 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 151 | Ballard | 47.668808 | -122.366262 | House | 6.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | West Woodland | Entire home/apt | 8 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 133.0 | 2 | moderate | 0 | 0 | 4317390 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 152 | Ballard | 47.668324 | -122.371821 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | West Woodland | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 65.0 | 2 | moderate | 0 | 0 | 3884851 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 153 | Ballard | 47.672372 | -122.362842 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Woodland | Private room | 1 | 2.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 61.0 | 1 | moderate | 0 | 0 | 3155785 | 8.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 154 | Ballard | 47.663882 | -122.362175 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 2.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 4 | flexible | 0 | 0 | 9368517 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 155 | Ballard | 47.670929 | -122.366782 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 70.0 | 5 | moderate | 0 | 0 | 5643240 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 156 | Ballard | 47.672617 | -122.374393 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 52.0 | 30 | moderate | 0 | 0 | 5042014 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 157 | Ballard | 47.672717 | -122.361417 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 50.0 | 1 | flexible | 0 | 0 | 7724630 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 158 | Ballard | 47.672743 | -122.373194 | Townhouse | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 8 | 2.5 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 275.0 | 1 | strict | 0 | 0 | 9449437 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 159 | Ballard | 47.664549 | -122.368209 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 149.0 | 2 | strict | 0 | 0 | 3053237 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 160 | Ballard | 47.666586 | -122.365652 | House | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | West Woodland | Entire home/apt | 8 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 1 | flexible | 0 | 0 | 8132347 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 161 | Ballard | 47.671714 | -122.365888 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 2 | moderate | 0 | 1 | 63733 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 162 | Ballard | 47.666868 | -122.364031 | House | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | West Woodland | Entire home/apt | 10 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 225.0 | 1 | strict | 0 | 0 | 2039149 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 163 | Ballard | 47.668071 | -122.362086 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 2 | strict | 0 | 1 | 227636 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 164 | Ballard | 47.672124 | -122.365009 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Pets live on this... | 85.0 | 2 | flexible | 0 | 0 | 3689119 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 165 | Ballard | 47.673584 | -122.373814 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 4 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 80.0 | 1 | strict | 0 | 0 | 1179538 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 166 | Ballard | 47.663378 | -122.364691 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 89.0 | 2 | strict | 0 | 0 | 6823781 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 167 | Ballard | 47.669341 | -122.366264 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 99.0 | 2 | moderate | 0 | 0 | 2284536 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 168 | Ballard | 47.664937 | -122.361680 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 110.0 | 1 | flexible | 0 | 0 | 5143441 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 169 | Ballard | 47.668845 | -122.368379 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 180.0 | 3 | moderate | 0 | 0 | 5749958 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 170 | Ballard | 47.665017 | -122.364707 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | flexible | 0 | 0 | 9116815 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 171 | Ballard | 47.668938 | -122.373339 | Apartment | 2.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet","Wheelchair Accessible",Ki... | 70.0 | 1 | flexible | 0 | 0 | 7731836 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 172 | Ballard | 47.665970 | -122.368639 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 70.0 | 1 | flexible | 0 | 0 | 10262971 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 173 | Ballard | 47.674313 | -122.367969 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Woodland | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 4 | strict | 0 | 0 | 1407502 | 8.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 174 | Ballard | 47.665209 | -122.362457 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 2 | flexible | 0 | 0 | 8817038 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 175 | Ballard | 47.664445 | -122.370171 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 1 | strict | 0 | 0 | 4449303 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 176 | Ballard | 47.666822 | -122.362937 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 3 | flexible | 0 | 0 | 8255615 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 177 | Ballard | 47.671222 | -122.363687 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 1 | West Woodland | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 80.0 | 1 | flexible | 0 | 0 | 4053092 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 178 | Ballard | 47.663655 | -122.366941 | Camper/RV | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 75.0 | 1 | moderate | 0 | 0 | 6886633 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 179 | Ballard | 47.675489 | -122.367515 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 3 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 80.0 | 1 | flexible | 0 | 0 | 8820414 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 180 | Ballard | 47.666887 | -122.364664 | House | 1.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 2 | flexible | 0 | 0 | 3052151 | 8.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 181 | Ballard | 47.673571 | -122.364274 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | West Woodland | Entire home/apt | 8 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 3 | moderate | 0 | 0 | 2339333 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 182 | Ballard | 47.665245 | -122.370410 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet","Pets Allowed","P... | 95.0 | 2 | moderate | 0 | 0 | 1618842 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 183 | Ballard | 47.671680 | -122.365390 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | West Woodland | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 90.0 | 1 | flexible | 1 | 1 | 888967 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 184 | Ballard | 47.666240 | -122.360918 | House | 5.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 12 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 435.0 | 2 | strict | 0 | 0 | 380950 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 185 | Ballard | 47.670912 | -122.365600 | House | 3.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | West Woodland | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 2 | strict | 0 | 0 | 8097708 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 186 | Ballard | 47.670987 | -122.375141 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Breakfast,Heating,"Family/... | 65.0 | 14 | moderate | 0 | 0 | 5671843 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 187 | Ballard | 47.665391 | -122.366099 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 95.0 | 3 | strict | 1 | 1 | 904057 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 188 | Ballard | 47.673424 | -122.374233 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Pets live on ... | 110.0 | 2 | moderate | 0 | 0 | 7161725 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 189 | Ballard | 47.671552 | -122.367633 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 50.0 | 1 | flexible | 0 | 0 | 9587410 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 190 | Ballard | 47.663388 | -122.361378 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 95.0 | 1 | flexible | 0 | 0 | 9202380 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 191 | Ballard | 47.663365 | -122.362469 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 100.0 | 4 | moderate | 0 | 0 | 2238105 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 192 | Ballard | 47.670761 | -122.371095 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | West Woodland | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 89.0 | 1 | flexible | 0 | 0 | 9545766 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 193 | Ballard | 47.675916 | -122.370474 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 116.0 | 2 | flexible | 0 | 0 | 2441908 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 194 | Ballard | 47.663651 | -122.362082 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 2 | flexible | 0 | 0 | 9367465 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 195 | Ballard | 47.665252 | -122.361921 | House | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | West Woodland | Entire home/apt | 8 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 275.0 | 1 | strict | 0 | 0 | 3031415 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 196 | Ballard | 47.671334 | -122.365798 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 6 | 2.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 180.0 | 3 | moderate | 1 | 1 | 843812 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 197 | Ballard | 47.673078 | -122.364140 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | West Woodland | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 97.0 | 1 | flexible | 0 | 0 | 3835995 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 198 | Ballard | 47.666785 | -122.366751 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | West Woodland | Entire home/apt | 5 | 3.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 0 | 0 | 9732638 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 199 | Queen Anne | 47.631843 | -122.345124 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 120.0 | 2 | flexible | 0 | 0 | 3768745 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 200 | Queen Anne | 47.628120 | -122.348752 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 109.0 | 2 | flexible | 0 | 0 | 3975434 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 201 | Queen Anne | 47.643600 | -122.344630 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Wheelchair Accessible","P... | 115.0 | 2 | flexible | 0 | 0 | 5620928 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 202 | Queen Anne | 47.628895 | -122.347571 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 2 | strict | 0 | 0 | 7381677 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 203 | Queen Anne | 47.638999 | -122.343574 | Apartment | 1.0 | Real Bed | within a day | 75.0 | 0.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 150.0 | 1 | moderate | 0 | 0 | 5487934 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 204 | Queen Anne | 47.639501 | -122.343304 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 100.0 | 1 | moderate | 0 | 0 | 9028447 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 205 | Queen Anne | 47.631526 | -122.356283 | House | 4.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 2 | moderate | 1 | 1 | 757840 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 206 | Queen Anne | 47.640177 | -122.346523 | Apartment | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Shared room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 39.0 | 1 | flexible | 0 | 0 | 8848403 | 9.857143 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 207 | Queen Anne | 47.642905 | -122.346705 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 2 | strict | 0 | 0 | 7430926 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 208 | Queen Anne | 47.640756 | -122.342877 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 145.0 | 2 | strict | 0 | 0 | 7021544 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 209 | Queen Anne | 47.635445 | -122.355517 | Apartment | 4.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 98.0 | 1 | moderate | 0 | 0 | 1323446 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 210 | Queen Anne | 47.642697 | -122.343691 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 130.0 | 2 | strict | 0 | 0 | 3925573 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 211 | Queen Anne | 47.638923 | -122.342827 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 85.0 | 1 | moderate | 0 | 0 | 8723086 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 212 | Queen Anne | 47.642912 | -122.344683 | Boat | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 85.0 | 2 | moderate | 1 | 1 | 781474 | 8.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 213 | Queen Anne | 47.639346 | -122.343132 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 73.0 | 2 | strict | 0 | 0 | 9812439 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 214 | Queen Anne | 47.635073 | -122.354594 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | moderate | 0 | 0 | 3401644 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 215 | Queen Anne | 47.628574 | -122.355909 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 85.0 | 3 | strict | 0 | 0 | 10036903 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 216 | Queen Anne | 47.637938 | -122.350726 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 190.0 | 1 | strict | 0 | 0 | 5310193 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 217 | Queen Anne | 47.629309 | -122.344136 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 68.0 | 2 | moderate | 0 | 0 | 5308875 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 218 | Queen Anne | 47.630506 | -122.345022 | Apartment | 1.0 | Real Bed | within an hour | 83.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 149.0 | 2 | moderate | 0 | 0 | 5052459 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 219 | Queen Anne | 47.630214 | -122.347615 | House | 5.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 10 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 349.0 | 1 | strict | 0 | 0 | 7228499 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 220 | Queen Anne | 47.629548 | -122.346597 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 21 | strict | 0 | 0 | 7651653 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 221 | Queen Anne | 47.633767 | -122.344615 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 4 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 145.0 | 3 | strict | 0 | 0 | 1494986 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 222 | Queen Anne | 47.634442 | -122.343784 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 2 | moderate | 0 | 0 | 1783382 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 223 | Queen Anne | 47.632119 | -122.346819 | Condominium | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Ele... | 275.0 | 4 | moderate | 0 | 0 | 7513198 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 224 | Queen Anne | 47.630435 | -122.350171 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 2 | moderate | 0 | 0 | 8308316 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 225 | Queen Anne | 47.638407 | -122.344077 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 5 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 196.0 | 2 | flexible | 0 | 0 | 9694921 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 226 | Queen Anne | 47.629004 | -122.343823 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 195.0 | 2 | strict | 0 | 0 | 2472850 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 227 | Queen Anne | 47.639359 | -122.344029 | Apartment | 2.0 | Real Bed | within a day | 75.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 200.0 | 2 | moderate | 0 | 0 | 5487522 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 228 | Queen Anne | 47.640120 | -122.344530 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | strict | 0 | 0 | 4016650 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 229 | Queen Anne | 47.638158 | -122.344157 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | 100.0 | 1 | flexible | 0 | 0 | 10229434 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 230 | Queen Anne | 47.639872 | -122.341834 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 3479241 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 231 | Queen Anne | 47.632145 | -122.350649 | House | 5.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 8 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | strict | 1 | 1 | 5848400 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 232 | Queen Anne | 47.634533 | -122.343790 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 130.0 | 2 | moderate | 0 | 0 | 6077760 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 233 | Queen Anne | 47.629947 | -122.351388 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 209.0 | 3 | moderate | 0 | 0 | 4642956 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 234 | Queen Anne | 47.631921 | -122.348520 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | strict | 0 | 1 | 1167507 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 235 | Queen Anne | 47.641543 | -122.344661 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | strict | 0 | 0 | 6044106 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 236 | Queen Anne | 47.638129 | -122.352374 | House | 1.0 | Real Bed | within a day | 83.0 | 100.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 90.0 | 2 | flexible | 0 | 0 | 1799255 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 237 | Queen Anne | 47.632800 | -122.346558 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 130.0 | 1 | flexible | 0 | 0 | 8941768 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 238 | Queen Anne | 47.630827 | -122.356230 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 175.0 | 2 | flexible | 0 | 0 | 6569950 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 239 | Queen Anne | 47.632756 | -122.346987 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 8 | 3.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 749.0 | 1 | moderate | 0 | 0 | 7733192 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 240 | Queen Anne | 47.628465 | -122.346548 | Condominium | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 1 | strict | 0 | 0 | 9215782 | 4.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 241 | Queen Anne | 47.642369 | -122.344086 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 165.0 | 2 | strict | 0 | 0 | 5175631 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 242 | Queen Anne | 47.629388 | -122.345925 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Pets Allowed"... | 109.0 | 1 | flexible | 0 | 0 | 6315614 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 |
| 243 | Queen Anne | 47.636855 | -122.356873 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 80.0 | 1 | moderate | 0 | 0 | 9134193 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 244 | Queen Anne | 47.636303 | -122.347827 | House | 4.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 285.0 | 2 | strict | 0 | 0 | 2481189 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 245 | Queen Anne | 47.633214 | -122.354940 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Pe... | 80.0 | 1 | strict | 0 | 0 | 8535897 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 246 | Queen Anne | 47.629431 | -122.345294 | Condominium | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | East Queen Anne | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Washer,Dryer,Essentials | 75.0 | 1 | flexible | 0 | 0 | 9476826 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
| 247 | Queen Anne | 47.637706 | -122.343988 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 68.0 | 20 | moderate | 0 | 0 | 3144311 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 248 | Queen Anne | 47.629172 | -122.347479 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 85.0 | 2 | strict | 0 | 0 | 9370007 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 249 | Queen Anne | 47.642192 | -122.346430 | Apartment | 2.0 | Real Bed | within an hour | 94.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 125.0 | 2 | strict | 0 | 0 | 6781308 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 250 | Queen Anne | 47.640346 | -122.342088 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 110.0 | 2 | moderate | 0 | 0 | 160222 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 251 | Queen Anne | 47.629051 | -122.350989 | House | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 7 | 4.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 600.0 | 3 | flexible | 0 | 0 | 4250367 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 252 | Queen Anne | 47.629834 | -122.346872 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 235.0 | 1 | moderate | 0 | 0 | 8755479 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 253 | Queen Anne | 47.640516 | -122.344504 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | flexible | 0 | 0 | 8829156 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 254 | Queen Anne | 47.630004 | -122.345120 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 95.0 | 1 | moderate | 0 | 0 | 5126077 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 255 | Queen Anne | 47.641040 | -122.344404 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 103.0 | 2 | strict | 0 | 0 | 6108796 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 256 | Queen Anne | 47.631112 | -122.343964 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 120.0 | 3 | strict | 0 | 0 | 2692126 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 257 | Queen Anne | 47.640468 | -122.355764 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 1 | flexible | 0 | 0 | 6882211 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 258 | Queen Anne | 47.639539 | -122.344848 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 5 | 2.5 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 143.0 | 1 | flexible | 0 | 0 | 9573675 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 259 | Queen Anne | 47.640711 | -122.346318 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 99.0 | 2 | flexible | 0 | 0 | 3544953 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 260 | Queen Anne | 47.641452 | -122.352885 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 142.0 | 3 | moderate | 0 | 0 | 2020505 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 261 | Queen Anne | 47.643875 | -122.346144 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 5580457 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 262 | Queen Anne | 47.639115 | -122.354299 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 295.0 | 1 | moderate | 0 | 0 | 1495271 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 263 | Queen Anne | 47.640323 | -122.349386 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 6 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 335.0 | 2 | strict | 0 | 0 | 8455865 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 264 | Queen Anne | 47.629637 | -122.356169 | Apartment | 1.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | East Queen Anne | Private room | 2 | 1.0 | 1.0 | 60.0 | 1 | flexible | 0 | 0 | 9679300 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 265 | Queen Anne | 47.637038 | -122.353111 | House | 3.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 250.0 | 4 | strict | 0 | 0 | 6065566 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 266 | Queen Anne | 47.633949 | -122.349691 | House | 5.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | East Queen Anne | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 499.0 | 2 | strict | 0 | 0 | 4645208 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 267 | Queen Anne | 47.637868 | -122.353064 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 2 | strict | 0 | 0 | 6115807 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 268 | Queen Anne | 47.637366 | -122.352344 | Bungalow | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 156.0 | 3 | moderate | 0 | 0 | 7091397 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 269 | Queen Anne | 47.637848 | -122.353587 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | strict | 0 | 0 | 6134153 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 270 | Queen Anne | 47.631801 | -122.355998 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 180.0 | 2 | moderate | 0 | 0 | 7763878 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 271 | Queen Anne | 47.638314 | -122.342931 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 103.0 | 1 | flexible | 0 | 0 | 8088447 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 272 | Queen Anne | 47.628336 | -122.346334 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 1 | moderate | 0 | 0 | 3418349 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 273 | Queen Anne | 47.640079 | -122.345242 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | Kitchen,Gym,"Elevator in Building","Hot Tub","... | 94.0 | 2 | flexible | 0 | 0 | 9199982 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 274 | Queen Anne | 47.638925 | -122.356288 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 1 | moderate | 0 | 0 | 6400000 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 275 | Queen Anne | 47.640017 | -122.345130 | Apartment | 2.0 | Real Bed | within an hour | 94.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 129.0 | 2 | strict | 0 | 0 | 6776229 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 276 | Queen Anne | 47.638790 | -122.341579 | Loft | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 219.0 | 2 | moderate | 0 | 0 | 7627794 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 277 | Queen Anne | 47.629195 | -122.348034 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 91.0 | 2 | strict | 0 | 0 | 8374102 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 278 | Queen Anne | 47.639337 | -122.344291 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | East Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 2 | strict | 0 | 0 | 6316934 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 279 | Queen Anne | 47.630333 | -122.347627 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | East Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 99.0 | 2 | moderate | 0 | 0 | 1820794 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 280 | Other neighborhoods | 47.653861 | -122.338497 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 5 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 300.0 | 5 | strict | 0 | 0 | 314180 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 281 | Other neighborhoods | 47.667730 | -122.326873 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 5 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | moderate | 0 | 0 | 8670079 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 282 | Other neighborhoods | 47.661441 | -122.343953 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 2 | strict | 0 | 0 | 4868135 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 283 | Other neighborhoods | 47.661669 | -122.333743 | Loft | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 0.0 | Internet,Kitchen,"Smoking Allowed","Pets Allow... | 75.0 | 1 | flexible | 0 | 0 | 5336585 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 |
| 284 | Other neighborhoods | 47.653172 | -122.337299 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 1 | strict | 0 | 0 | 1427103 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 285 | Other neighborhoods | 47.664587 | -122.333058 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | moderate | 0 | 0 | 3518808 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 286 | Other neighborhoods | 47.664071 | -122.335379 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 4 | moderate | 0 | 0 | 8995844 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 287 | Other neighborhoods | 47.653899 | -122.338069 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 5 | strict | 0 | 0 | 356566 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 288 | Other neighborhoods | 47.670949 | -122.324740 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 74.0 | 1 | moderate | 0 | 0 | 6466388 | 8.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 289 | Other neighborhoods | 47.666183 | -122.334611 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 140.0 | 1 | moderate | 0 | 0 | 4531944 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 290 | Other neighborhoods | 47.671503 | -122.327891 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 130.0 | 3 | strict | 0 | 0 | 6686072 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 291 | Other neighborhoods | 47.665467 | -122.323574 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | moderate | 0 | 0 | 4384343 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 292 | Other neighborhoods | 47.666985 | -122.339402 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 199.0 | 2 | moderate | 0 | 0 | 7900056 | 8.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 293 | Other neighborhoods | 47.653738 | -122.338980 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 209.0 | 3 | strict | 0 | 0 | 6378563 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 294 | Other neighborhoods | 47.668957 | -122.337783 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 100.0 | 2 | moderate | 0 | 0 | 5630783 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 295 | Other neighborhoods | 47.655885 | -122.332136 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 2 | moderate | 0 | 1 | 340706 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 296 | Other neighborhoods | 47.651636 | -122.338622 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 104.0 | 2 | strict | 0 | 0 | 6202214 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 297 | Other neighborhoods | 47.665402 | -122.339387 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 3 | strict | 0 | 0 | 1030411 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 298 | Other neighborhoods | 47.653616 | -122.332560 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 0.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 99.0 | 2 | flexible | 0 | 0 | 7922373 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 299 | Other neighborhoods | 47.664744 | -122.338174 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 1 | strict | 0 | 0 | 6156470 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 300 | Other neighborhoods | 47.665856 | -122.322691 | Apartment | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 3 | strict | 0 | 0 | 2994309 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 301 | Other neighborhoods | 47.656355 | -122.338104 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 122.0 | 2 | strict | 0 | 0 | 1594328 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 302 | Other neighborhoods | 47.660147 | -122.341530 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 80.0 | 5 | moderate | 0 | 0 | 8072920 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 303 | Other neighborhoods | 47.666920 | -122.338794 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 158.0 | 2 | strict | 0 | 0 | 6915487 | 7.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 304 | Other neighborhoods | 47.651586 | -122.339903 | Apartment | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 90.0 | 1 | moderate | 0 | 0 | 6202603 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 305 | Other neighborhoods | 47.655955 | -122.332155 | Apartment | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Wallingford | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 1 | flexible | 0 | 0 | 5286781 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 306 | Other neighborhoods | 47.659912 | -122.337686 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 89.0 | 2 | strict | 0 | 0 | 2818420 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 307 | Other neighborhoods | 47.661032 | -122.335164 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 3 | moderate | 0 | 0 | 3739681 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 308 | Other neighborhoods | 47.668363 | -122.338887 | Apartment | 1.0 | Airbed | within a day | 58.0 | 100.0 | 0 | Wallingford | Shared room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 42.0 | 1 | flexible | 0 | 0 | 7922063 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 309 | Other neighborhoods | 47.663695 | -122.336225 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 2 | moderate | 1 | 1 | 611509 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 310 | Other neighborhoods | 47.656119 | -122.339032 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 100.0 | 2 | moderate | 0 | 0 | 1802663 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 311 | Other neighborhoods | 47.661283 | -122.326836 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 40.0 | 7 | moderate | 0 | 0 | 9797545 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 312 | Other neighborhoods | 47.661073 | -122.333498 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 185.0 | 4 | flexible | 0 | 0 | 9241055 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 313 | Other neighborhoods | 47.669802 | -122.338540 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 40.0 | 2 | flexible | 0 | 0 | 9294832 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 314 | Other neighborhoods | 47.655897 | -122.326535 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Smoking Allowe... | 70.0 | 1 | flexible | 0 | 0 | 8643209 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 315 | Other neighborhoods | 47.650858 | -122.331338 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 40.0 | 4 | strict | 0 | 0 | 7258811 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 316 | Other neighborhoods | 47.661503 | -122.334257 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | 70.0 | 1 | flexible | 0 | 0 | 10265391 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 317 | Other neighborhoods | 47.669228 | -122.335174 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 110.0 | 2 | moderate | 0 | 0 | 132120 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 318 | Other neighborhoods | 47.664147 | -122.334250 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 2 | strict | 0 | 0 | 6343866 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 319 | Other neighborhoods | 47.648572 | -122.340759 | Boat | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 6 | 3.0 | 3.0 | TV,"Cable TV","Air Conditioning",Kitchen,"Free... | 680.0 | 1 | flexible | 0 | 0 | 3066740 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 320 | Other neighborhoods | 47.657071 | -122.323880 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.5 | 3.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 195.0 | 5 | strict | 0 | 0 | 4130112 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 321 | Other neighborhoods | 47.667351 | -122.339923 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 1 | strict | 0 | 0 | 4026757 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 322 | Other neighborhoods | 47.662432 | -122.346792 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises","Smoking Al... | 90.0 | 1 | flexible | 0 | 0 | 9545281 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 323 | Other neighborhoods | 47.650891 | -122.333534 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Hot T... | 119.0 | 2 | strict | 0 | 0 | 3294804 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 324 | Other neighborhoods | 47.672062 | -122.324928 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 2 | moderate | 0 | 0 | 4122325 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 325 | Other neighborhoods | 47.652160 | -122.339430 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 65.0 | 1 | flexible | 0 | 0 | 8308353 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 326 | Other neighborhoods | 47.662289 | -122.346090 | Apartment | 1.0 | Futon | within an hour | 100.0 | 0.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 75.0 | 1 | flexible | 0 | 0 | 7226013 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 |
| 327 | Other neighborhoods | 47.666689 | -122.339271 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 126.0 | 2 | moderate | 0 | 0 | 5761290 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 328 | Other neighborhoods | 47.666671 | -122.332602 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 2 | flexible | 1 | 1 | 182716 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 329 | Other neighborhoods | 47.670659 | -122.335962 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 90.0 | 2 | flexible | 0 | 0 | 3050140 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 330 | Other neighborhoods | 47.654306 | -122.330226 | Apartment | 1.0 | Real Bed | a few days or more | 43.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 129.0 | 1 | strict | 0 | 0 | 3254956 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 331 | Other neighborhoods | 47.659400 | -122.324507 | House | 6.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 12 | 2.0 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 3 | strict | 0 | 0 | 1264287 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 332 | Other neighborhoods | 47.649708 | -122.331015 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3404557 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 333 | Other neighborhoods | 47.650934 | -122.331326 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 50.0 | 5 | flexible | 0 | 0 | 3939683 | 8.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 334 | Other neighborhoods | 47.650973 | -122.330884 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3424242 | 8.857143 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 335 | Other neighborhoods | 47.650024 | -122.332803 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 40.0 | 5 | flexible | 0 | 0 | 7985714 | 8.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 336 | Other neighborhoods | 47.661823 | -122.329301 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 0 | 0 | 4279876 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 337 | Other neighborhoods | 47.661405 | -122.345472 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Indoor Fireplace"... | 175.0 | 2 | moderate | 0 | 0 | 3870253 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 338 | Other neighborhoods | 47.657362 | -122.327625 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 2 | moderate | 0 | 0 | 2187563 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 339 | Other neighborhoods | 47.649854 | -122.330685 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3889299 | 9.142857 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 340 | Other neighborhoods | 47.651294 | -122.331032 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3889330 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 341 | Other neighborhoods | 47.649831 | -122.334331 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Pets live o... | 120.0 | 3 | flexible | 0 | 0 | 1184846 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 342 | Other neighborhoods | 47.659451 | -122.329137 | House | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 66.0 | 2 | moderate | 0 | 0 | 3626162 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 343 | Other neighborhoods | 47.669479 | -122.329441 | House | 1.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 55.0 | 1 | flexible | 1 | 1 | 456040 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 344 | Other neighborhoods | 47.660979 | -122.333483 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 7 | 3.0 | 4.0 | "Wireless Internet","Free Parking on Premises"... | 350.0 | 4 | moderate | 0 | 0 | 9033154 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
| 345 | Other neighborhoods | 47.668468 | -122.326696 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 85.0 | 1 | flexible | 0 | 0 | 4340838 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 346 | Other neighborhoods | 47.665214 | -122.336753 | House | 3.0 | Real Bed | within a day | 92.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 175.0 | 2 | strict | 0 | 0 | 808811 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 347 | Other neighborhoods | 47.661165 | -122.336846 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 5 | flexible | 0 | 0 | 7368030 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 348 | Other neighborhoods | 47.650987 | -122.341705 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 55.0 | 1 | flexible | 1 | 1 | 522287 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 349 | Other neighborhoods | 47.655129 | -122.335288 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 150.0 | 1 | strict | 0 | 0 | 1940787 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 |
| 350 | Other neighborhoods | 47.650211 | -122.332035 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3732103 | 9.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 351 | Other neighborhoods | 47.650552 | -122.330589 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 59.0 | 2 | moderate | 0 | 0 | 43373 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 352 | Other neighborhoods | 47.662870 | -122.324890 | House | 1.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets Allowed",... | 80.0 | 1 | moderate | 0 | 0 | 5126365 | 7.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 353 | Other neighborhoods | 47.666596 | -122.337912 | House | 3.0 | Real Bed | within a day | 57.0 | 100.0 | 0 | Wallingford | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 1 | flexible | 0 | 0 | 7182584 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 354 | Other neighborhoods | 47.663301 | -122.343459 | House | 1.0 | Real Bed | within a day | 92.0 | 100.0 | 0 | Wallingford | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | strict | 0 | 0 | 5325214 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 |
| 355 | Other neighborhoods | 47.658093 | -122.331716 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 59.0 | 2 | moderate | 0 | 0 | 2710274 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 356 | Other neighborhoods | 47.657672 | -122.325848 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 575.0 | 4 | moderate | 0 | 0 | 5128160 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 357 | Other neighborhoods | 47.650207 | -122.331104 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3424114 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 358 | Other neighborhoods | 47.649529 | -122.332177 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 139.0 | 2 | strict | 0 | 0 | 2776890 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 359 | Other neighborhoods | 47.653720 | -122.338388 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 70.0 | 2 | strict | 0 | 0 | 4521755 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 360 | Other neighborhoods | 47.650596 | -122.334038 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 85.0 | 2 | moderate | 0 | 0 | 3456599 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 361 | Other neighborhoods | 47.657879 | -122.341800 | Apartment | 2.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 259.0 | 3 | strict | 0 | 0 | 8207848 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 362 | Other neighborhoods | 47.661894 | -122.323749 | Apartment | 1.0 | Airbed | within a day | 100.0 | 100.0 | 0 | Wallingford | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 39.0 | 1 | flexible | 0 | 0 | 10249527 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 363 | Other neighborhoods | 47.662668 | -122.345044 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 70.0 | 2 | flexible | 0 | 0 | 1252740 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 364 | Other neighborhoods | 47.669902 | -122.324049 | House | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Indoor... | 166.0 | 3 | strict | 1 | 1 | 4250938 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 365 | Other neighborhoods | 47.664005 | -122.328337 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 2 | moderate | 0 | 0 | 3791920 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 366 | Other neighborhoods | 47.659343 | -122.331939 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 2 | strict | 0 | 0 | 4258762 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 367 | Other neighborhoods | 47.662631 | -122.346118 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | moderate | 0 | 0 | 7364146 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 368 | Other neighborhoods | 47.655103 | -122.336044 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 7 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 2 | strict | 0 | 0 | 6765045 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 369 | Other neighborhoods | 47.647345 | -122.333486 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 7 | strict | 0 | 0 | 3193738 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 370 | Other neighborhoods | 47.662145 | -122.324017 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 5 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 200.0 | 2 | flexible | 0 | 0 | 8765219 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 371 | Other neighborhoods | 47.653210 | -122.339971 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 5 | strict | 0 | 0 | 8174285 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 372 | Other neighborhoods | 47.650942 | -122.332589 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3403638 | 8.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 373 | Other neighborhoods | 47.653554 | -122.328968 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 215.0 | 2 | flexible | 0 | 0 | 7601333 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 374 | Other neighborhoods | 47.664369 | -122.330636 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 110.0 | 1 | flexible | 0 | 0 | 6707735 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 375 | Other neighborhoods | 47.670253 | -122.328886 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 5 | 1.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 249.0 | 4 | strict | 0 | 0 | 7322718 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |
| 376 | Other neighborhoods | 47.660318 | -122.331905 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 295.0 | 1 | strict | 0 | 0 | 3783162 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 377 | Other neighborhoods | 47.654109 | -122.337605 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | strict | 0 | 0 | 6606 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 378 | Other neighborhoods | 47.649961 | -122.332702 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3889280 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 379 | Other neighborhoods | 47.657700 | -122.334151 | Apartment | 1.0 | Real Bed | within a day | 71.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | flexible | 0 | 0 | 3971137 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 380 | Other neighborhoods | 47.651582 | -122.330797 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3889050 | 7.857143 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 381 | Other neighborhoods | 47.670846 | -122.337467 | House | 1.0 | Pull-out Sofa | within a day | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 40.0 | 1 | flexible | 0 | 0 | 799882 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 382 | Other neighborhoods | 47.668092 | -122.336773 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 245.0 | 2 | moderate | 0 | 0 | 9508386 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 383 | Other neighborhoods | 47.664320 | -122.329175 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 130.0 | 5 | flexible | 0 | 0 | 6714817 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 384 | Other neighborhoods | 47.662917 | -122.326723 | House | 2.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.5 | 3.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 210.0 | 1 | flexible | 0 | 0 | 3773700 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 385 | Other neighborhoods | 47.670814 | -122.327486 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Wallingford | Entire home/apt | 6 | 2.5 | 2.0 | Internet,"Wireless Internet","Air Conditioning... | 439.0 | 2 | moderate | 0 | 0 | 3773568 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 386 | Other neighborhoods | 47.654914 | -122.338075 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 1 | flexible | 0 | 0 | 9313974 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 387 | Other neighborhoods | 47.671642 | -122.325277 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 3 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Pool,G... | 95.0 | 2 | strict | 0 | 0 | 6492880 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 388 | Other neighborhoods | 47.669822 | -122.326960 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 109.0 | 2 | moderate | 0 | 0 | 4879013 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 389 | Other neighborhoods | 47.650850 | -122.332911 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3732094 | 8.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 390 | Other neighborhoods | 47.655431 | -122.333422 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 175.0 | 3 | moderate | 0 | 0 | 873073 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 391 | Other neighborhoods | 47.662310 | -122.326849 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 80.0 | 4 | strict | 1 | 1 | 234898 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 392 | Other neighborhoods | 47.663324 | -122.325756 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Family/K... | 105.0 | 2 | flexible | 0 | 0 | 8533375 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 |
| 393 | Other neighborhoods | 47.665803 | -122.338767 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 8 | 3.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 400.0 | 1 | strict | 0 | 0 | 6854019 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 394 | Other neighborhoods | 47.652542 | -122.338769 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 100.0 | 2 | moderate | 0 | 0 | 8418650 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 395 | Other neighborhoods | 47.649898 | -122.331256 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3732076 | 9.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 396 | Other neighborhoods | 47.658993 | -122.324663 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 2 | flexible | 0 | 0 | 4608592 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 397 | Other neighborhoods | 47.668006 | -122.329389 | House | 1.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 55.0 | 1 | flexible | 1 | 1 | 4862719 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 398 | Other neighborhoods | 47.666425 | -122.334905 | House | 2.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Wallingford | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 3 | strict | 0 | 0 | 668169 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 399 | Other neighborhoods | 47.651663 | -122.339685 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 2.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 5 | strict | 0 | 0 | 429453 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 400 | Other neighborhoods | 47.653491 | -122.340953 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 55.0 | 1 | flexible | 0 | 0 | 10124808 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 401 | Other neighborhoods | 47.657083 | -122.326551 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 95.0 | 1 | strict | 0 | 0 | 7459684 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 402 | Other neighborhoods | 47.670964 | -122.328863 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 155.0 | 3 | strict | 0 | 0 | 5992645 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 403 | Other neighborhoods | 47.661918 | -122.324991 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | strict | 0 | 0 | 7917718 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 404 | Other neighborhoods | 47.650994 | -122.332345 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 2986056 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 405 | Other neighborhoods | 47.656127 | -122.335303 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 7 | 2.0 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 250.0 | 2 | strict | 0 | 0 | 2011193 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 406 | Other neighborhoods | 47.667526 | -122.328911 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Free Parking on ... | 145.0 | 1 | flexible | 0 | 0 | 3768626 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 407 | Other neighborhoods | 47.659297 | -122.333096 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 54.0 | 1 | moderate | 0 | 0 | 2026794 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 408 | Other neighborhoods | 47.652576 | -122.328736 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 2 | moderate | 0 | 0 | 9154294 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 409 | Other neighborhoods | 47.654102 | -122.338511 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 8 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 254.0 | 1 | strict | 0 | 0 | 430610 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 410 | Other neighborhoods | 47.670488 | -122.322600 | Loft | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Heating,"Famil... | 100.0 | 2 | strict | 0 | 0 | 3231850 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 411 | Other neighborhoods | 47.656687 | -122.326570 | House | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 65.0 | 2 | flexible | 0 | 0 | 2976798 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 412 | Other neighborhoods | 47.652434 | -122.337853 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 150.0 | 2 | moderate | 1 | 1 | 703058 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 413 | Other neighborhoods | 47.648269 | -122.337032 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 140.0 | 1 | moderate | 0 | 0 | 7826541 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 414 | Other neighborhoods | 47.668176 | -122.337371 | House | 2.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Wallingford | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 45.0 | 3 | strict | 0 | 0 | 240920 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 415 | Other neighborhoods | 47.670267 | -122.325373 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Wallingford | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 74.0 | 1 | moderate | 0 | 0 | 6655233 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 416 | Other neighborhoods | 47.661906 | -122.323972 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 60.0 | 1 | flexible | 0 | 0 | 9866461 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 417 | Other neighborhoods | 47.662222 | -122.323587 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 5 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 350.0 | 3 | flexible | 0 | 0 | 7957729 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 418 | Other neighborhoods | 47.666326 | -122.333741 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 135.0 | 2 | strict | 0 | 0 | 1428687 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 419 | Other neighborhoods | 47.661981 | -122.346096 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 85.0 | 2 | flexible | 0 | 0 | 4803403 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 420 | Other neighborhoods | 47.654477 | -122.336464 | House | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Wallingford | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 310.0 | 3 | strict | 0 | 0 | 11012 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 421 | Other neighborhoods | 47.651276 | -122.332797 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3888924 | 8.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 422 | Other neighborhoods | 47.664227 | -122.339049 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 5 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 215.0 | 2 | strict | 0 | 0 | 8842808 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 423 | Other neighborhoods | 47.661217 | -122.339424 | House | 3.0 | Airbed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 245.0 | 1 | strict | 0 | 0 | 1114695 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 424 | Other neighborhoods | 47.662477 | -122.332659 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Wallingford | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 65.0 | 2 | moderate | 0 | 0 | 1715582 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 425 | Other neighborhoods | 47.663693 | -122.328366 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 2 | moderate | 0 | 0 | 6704734 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 426 | Other neighborhoods | 47.667678 | -122.328414 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 1 | flexible | 0 | 0 | 8555098 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 427 | Other neighborhoods | 47.663585 | -122.340728 | House | 1.0 | Real Bed | within a few hours | 93.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 57.0 | 1 | moderate | 0 | 0 | 1214316 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 428 | Other neighborhoods | 47.657367 | -122.326742 | Bungalow | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 75.0 | 1 | flexible | 0 | 0 | 7325455 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 429 | Other neighborhoods | 47.664404 | -122.338127 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 1 | strict | 0 | 0 | 6325685 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 430 | Other neighborhoods | 47.654787 | -122.336520 | Apartment | 6.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 3 | strict | 0 | 0 | 9596 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 431 | Other neighborhoods | 47.650147 | -122.341771 | Apartment | 1.0 | Couch | within a day | 100.0 | 100.0 | 0 | Wallingford | Shared room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Gym,Breakfast,"Ele... | 40.0 | 1 | flexible | 0 | 0 | 9568491 | 9.857143 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 |
| 432 | Other neighborhoods | 47.649236 | -122.332180 | House | 6.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | Wallingford | Entire home/apt | 12 | 3.0 | 6.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 490.0 | 2 | strict | 0 | 0 | 1747184 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 433 | Other neighborhoods | 47.671695 | -122.324879 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 50.0 | 2 | flexible | 0 | 0 | 8653843 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 434 | Other neighborhoods | 47.647850 | -122.336079 | House | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Wallingford | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 2 | moderate | 0 | 0 | 6727729 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 435 | Other neighborhoods | 47.651056 | -122.330986 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wallingford | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 40.0 | 4 | strict | 0 | 0 | 3888986 | 9.142857 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 436 | Other neighborhoods | 47.648115 | -122.331665 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 255.0 | 4 | strict | 0 | 0 | 4135710 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 437 | Other neighborhoods | 47.654370 | -122.327896 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 95.0 | 1 | moderate | 0 | 0 | 3652434 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 438 | Other neighborhoods | 47.657542 | -122.341533 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 160.0 | 1 | moderate | 0 | 0 | 7667990 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 439 | Other neighborhoods | 47.668581 | -122.336880 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 1 | strict | 0 | 0 | 4047058 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 440 | Other neighborhoods | 47.660296 | -122.340261 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | moderate | 0 | 0 | 7163934 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 441 | Other neighborhoods | 47.669934 | -122.326690 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Entire home/apt | 8 | 1.0 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 325.0 | 2 | flexible | 0 | 0 | 7717478 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 442 | Other neighborhoods | 47.671463 | -122.334133 | Apartment | 3.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Wallingford | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 144.0 | 1 | flexible | 0 | 0 | 4653552 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 443 | Other neighborhoods | 47.658376 | -122.326766 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wallingford | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 3 | moderate | 0 | 0 | 6915439 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 444 | Other neighborhoods | 47.658539 | -122.325818 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wallingford | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet","Wheelchair Acces... | 115.0 | 3 | strict | 0 | 0 | 506542 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 445 | Other neighborhoods | 47.665368 | -122.339994 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Wallingford | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 1 | strict | 0 | 0 | 4046863 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 446 | Other neighborhoods | 47.659387 | -122.341882 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Wallingford | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 95.0 | 2 | moderate | 0 | 0 | 3915826 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 447 | Queen Anne | 47.641811 | -122.374071 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 4 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 175.0 | 3 | strict | 0 | 0 | 4787415 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 448 | Queen Anne | 47.646757 | -122.352799 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 1 | moderate | 0 | 0 | 1602488 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 449 | Queen Anne | 47.641692 | -122.359255 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 100.0 | 2 | flexible | 0 | 0 | 8459215 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 450 | Queen Anne | 47.649775 | -122.357983 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen | 46.0 | 1 | flexible | 0 | 0 | 10274175 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 451 | Queen Anne | 47.642358 | -122.374047 | House | 1.0 | Real Bed | within a few hours | 96.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 50.0 | 1 | flexible | 0 | 0 | 9167786 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 |
| 452 | Queen Anne | 47.642622 | -122.364355 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 445.0 | 3 | strict | 0 | 0 | 5686435 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 453 | Queen Anne | 47.646895 | -122.361440 | House | 1.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 75.0 | 1 | moderate | 0 | 0 | 7939058 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 454 | Queen Anne | 47.651861 | -122.364994 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | moderate | 0 | 0 | 8392801 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 455 | Queen Anne | 47.647639 | -122.355294 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 130.0 | 2 | moderate | 0 | 0 | 7404370 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 456 | Queen Anne | 47.647588 | -122.358895 | House | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 5 | 3.0 | 3.0 | Internet,"Wireless Internet","Air Conditioning... | 235.0 | 2 | moderate | 0 | 0 | 3720511 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 457 | Queen Anne | 47.646658 | -122.356815 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 8193332 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 458 | Queen Anne | 47.652472 | -122.369078 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 120.0 | 1 | flexible | 0 | 0 | 7957904 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 459 | Queen Anne | 47.653492 | -122.369741 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 4 | moderate | 0 | 0 | 4555997 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 460 | Queen Anne | 47.645302 | -122.360906 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 2 | moderate | 0 | 0 | 2267088 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 461 | Queen Anne | 47.645288 | -122.372642 | House | 5.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 9 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 395.0 | 3 | strict | 0 | 0 | 108468 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 462 | Queen Anne | 47.643531 | -122.360834 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 88.0 | 1 | moderate | 0 | 0 | 6400379 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 463 | Queen Anne | 47.641452 | -122.374188 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,"... | 55.0 | 3 | flexible | 0 | 0 | 5948003 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 464 | Queen Anne | 47.644913 | -122.373463 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 145.0 | 2 | moderate | 0 | 0 | 5058086 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 465 | Queen Anne | 47.640947 | -122.357375 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 425.0 | 2 | strict | 0 | 0 | 1209255 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 466 | Queen Anne | 47.641415 | -122.365496 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 114.0 | 2 | strict | 0 | 0 | 1914051 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 467 | Queen Anne | 47.646527 | -122.354334 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 2 | flexible | 0 | 0 | 2923529 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 468 | Queen Anne | 47.650795 | -122.372385 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 300.0 | 7 | strict | 0 | 0 | 1027860 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 469 | Queen Anne | 47.639925 | -122.367431 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 117.0 | 2 | strict | 0 | 0 | 2373176 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 470 | Queen Anne | 47.642382 | -122.372073 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 275.0 | 2 | moderate | 0 | 0 | 6404427 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 471 | Queen Anne | 47.642657 | -122.358108 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 1 | flexible | 0 | 0 | 8517602 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 472 | Queen Anne | 47.640965 | -122.368286 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 8 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 300.0 | 7 | flexible | 0 | 0 | 7035240 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 473 | Queen Anne | 47.645193 | -122.375820 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 53.0 | 1 | moderate | 1 | 1 | 4583161 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 474 | Queen Anne | 47.644105 | -122.370680 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 107.0 | 1 | moderate | 0 | 0 | 7967844 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 475 | Queen Anne | 47.643624 | -122.367424 | House | 2.0 | Real Bed | 0 | 0.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 348.0 | 3 | flexible | 0 | 0 | 6562393 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 476 | Queen Anne | 47.654340 | -122.370877 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Pets live on ... | 89.0 | 1 | strict | 0 | 0 | 7807087 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 477 | Queen Anne | 47.650173 | -122.367600 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 7 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 89.0 | 2 | moderate | 0 | 0 | 5405643 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 478 | Queen Anne | 47.650590 | -122.371229 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 89.0 | 1 | flexible | 0 | 0 | 7011200 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 479 | Queen Anne | 47.649393 | -122.375584 | Bed & Breakfast | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 209.0 | 2 | strict | 0 | 0 | 610989 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 480 | Queen Anne | 47.643411 | -122.362716 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 76.0 | 1 | flexible | 0 | 0 | 7839535 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 481 | Queen Anne | 47.643435 | -122.373008 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 74.0 | 3 | flexible | 0 | 0 | 4814894 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 482 | Queen Anne | 47.644131 | -122.356299 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Entire home/apt | 6 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | strict | 0 | 0 | 186328 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 483 | Queen Anne | 47.645981 | -122.351244 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Air Conditioning... | 180.0 | 1 | flexible | 0 | 0 | 7492877 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 484 | Queen Anne | 47.652760 | -122.368784 | Condominium | 2.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 179.0 | 1 | flexible | 0 | 0 | 6576228 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 485 | Queen Anne | 47.643286 | -122.375819 | House | 3.0 | Real Bed | within a few hours | 96.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Air Conditioning... | 115.0 | 2 | moderate | 0 | 0 | 241016 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 486 | Queen Anne | 47.641529 | -122.356709 | Apartment | 2.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 140.0 | 2 | moderate | 0 | 0 | 6968101 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 487 | Queen Anne | 47.647257 | -122.359319 | Apartment | 4.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.5 | 2.0 | 150.0 | 5 | strict | 0 | 0 | 5648564 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 488 | Queen Anne | 47.647216 | -122.356697 | Apartment | 2.0 | Futon | within a few hours | 70.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 70.0 | 1 | flexible | 0 | 0 | 4116645 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 489 | Queen Anne | 47.646883 | -122.354231 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 300.0 | 3 | flexible | 0 | 0 | 2419879 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 490 | Queen Anne | 47.647193 | -122.358906 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 99.0 | 1 | moderate | 0 | 0 | 6425735 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 491 | Queen Anne | 47.644787 | -122.351314 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | Kitchen,Heating,Washer,Dryer,"Smoke Detector",... | 89.0 | 1 | strict | 0 | 0 | 8105351 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 492 | Queen Anne | 47.645351 | -122.375194 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Queen Anne | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 9136499 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 493 | Queen Anne | 47.644800 | -122.373931 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Queen Anne | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 84.0 | 2 | moderate | 0 | 0 | 3639023 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 494 | Queen Anne | 47.640186 | -122.366376 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 97.0 | 4 | moderate | 0 | 0 | 6724599 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 495 | Queen Anne | 47.649367 | -122.372247 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 116.0 | 3 | moderate | 0 | 0 | 4211629 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 496 | Queen Anne | 47.643150 | -122.358952 | House | 1.0 | Real Bed | within an hour | 95.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 7151924 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 497 | Queen Anne | 47.642152 | -122.369593 | Apartment | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 110.0 | 1 | moderate | 0 | 0 | 704764 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 498 | Queen Anne | 47.647837 | -122.356169 | House | 4.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 265.0 | 3 | strict | 1 | 1 | 1796217 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 499 | Queen Anne | 47.644021 | -122.375572 | Apartment | 2.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 115.0 | 3 | strict | 0 | 0 | 4661812 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 500 | Queen Anne | 47.642662 | -122.371084 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 100.0 | 6 | moderate | 0 | 0 | 8811945 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 501 | Other neighborhoods | 47.677015 | -122.330848 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | Green Lake | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 109.0 | 2 | flexible | 1 | 1 | 1090307 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 502 | Other neighborhoods | 47.688266 | -122.335856 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 60.0 | 1 | moderate | 0 | 0 | 15108 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 503 | Other neighborhoods | 47.686145 | -122.332185 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 6 | 3.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 249.0 | 3 | flexible | 0 | 0 | 1882316 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 504 | Other neighborhoods | 47.685327 | -122.342389 | House | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Green Lake | Entire home/apt | 7 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 250.0 | 2 | strict | 1 | 1 | 1095207 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 505 | Other neighborhoods | 47.673304 | -122.322513 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Entire home/apt | 4 | 2.0 | 3.0 | Internet,Kitchen,"Indoor Fireplace",Heating,Wa... | 100.0 | 26 | flexible | 0 | 0 | 1343805 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 506 | Other neighborhoods | 47.678030 | -122.326485 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 74.0 | 1 | moderate | 0 | 0 | 9217150 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 507 | Other neighborhoods | 47.684157 | -122.325972 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 235.0 | 3 | strict | 1 | 1 | 103920 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 508 | Other neighborhoods | 47.673731 | -122.334571 | Apartment | 2.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Green Lake | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 3 | strict | 0 | 0 | 2215336 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 509 | Other neighborhoods | 47.689768 | -122.334647 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 96.0 | 1 | moderate | 0 | 0 | 1483944 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 510 | Other neighborhoods | 47.674676 | -122.333496 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 92.0 | 1 | strict | 0 | 0 | 6466129 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 511 | Other neighborhoods | 47.673358 | -122.327325 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 85.0 | 2 | strict | 0 | 0 | 8536441 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 512 | Other neighborhoods | 47.674912 | -122.325238 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | moderate | 0 | 0 | 6262987 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 513 | Other neighborhoods | 47.674310 | -122.322660 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 55.0 | 2 | moderate | 0 | 0 | 8379081 | 8.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 514 | Other neighborhoods | 47.677084 | -122.323524 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Brea... | 80.0 | 1 | flexible | 0 | 0 | 8365938 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 515 | Other neighborhoods | 47.674526 | -122.333473 | Apartment | 1.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 2 | strict | 0 | 0 | 9921445 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 516 | Other neighborhoods | 47.682261 | -122.343450 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 145.0 | 3 | strict | 0 | 1 | 132160 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 517 | Other neighborhoods | 47.675569 | -122.332773 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 180.0 | 3 | moderate | 0 | 0 | 2033191 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 518 | Other neighborhoods | 47.676502 | -122.325553 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Green Lake | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 50.0 | 1 | flexible | 0 | 0 | 8849407 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 519 | Other neighborhoods | 47.675359 | -122.333385 | Apartment | 3.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 2 | strict | 0 | 0 | 9922335 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 520 | Other neighborhoods | 47.676058 | -122.323279 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 140.0 | 2 | strict | 0 | 0 | 7243974 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 521 | Other neighborhoods | 47.676338 | -122.329586 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Green Lake | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 140.0 | 2 | moderate | 0 | 0 | 6490453 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 522 | Other neighborhoods | 47.678056 | -122.322246 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Green Lake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 40.0 | 1 | moderate | 0 | 0 | 4025593 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 523 | Other neighborhoods | 47.687707 | -122.335778 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Ind... | 145.0 | 2 | moderate | 0 | 0 | 8556103 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 524 | Other neighborhoods | 47.690449 | -122.342187 | House | 2.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 3 | strict | 1 | 1 | 955506 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 525 | Other neighborhoods | 47.675523 | -122.324298 | Townhouse | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Green Lake | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 325.0 | 1 | moderate | 0 | 0 | 9868607 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 526 | Other neighborhoods | 47.672323 | -122.321942 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 199.0 | 1 | strict | 0 | 0 | 8668073 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 527 | Other neighborhoods | 47.685330 | -122.324852 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Entire home/apt | 7 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 4 | moderate | 0 | 0 | 790860 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 528 | Other neighborhoods | 47.683781 | -122.342013 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 175.0 | 4 | strict | 0 | 1 | 261912 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 529 | Other neighborhoods | 47.683545 | -122.330911 | House | 6.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 12 | 3.0 | 6.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 550.0 | 4 | strict | 0 | 0 | 368403 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 530 | Other neighborhoods | 47.674690 | -122.332415 | House | 5.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Green Lake | Entire home/apt | 7 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 149.0 | 20 | moderate | 0 | 0 | 9878971 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 531 | Other neighborhoods | 47.685871 | -122.327567 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 130.0 | 3 | strict | 0 | 0 | 5602370 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 532 | Other neighborhoods | 47.680096 | -122.323421 | Apartment | 1.0 | Real Bed | within a few hours | 78.0 | 0.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 1 | moderate | 0 | 0 | 9395217 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 533 | Other neighborhoods | 47.673144 | -122.325953 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 300.0 | 4 | strict | 0 | 0 | 7331079 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 534 | Other neighborhoods | 47.676597 | -122.330776 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 2 | moderate | 0 | 0 | 580182 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 535 | Other neighborhoods | 47.676440 | -122.327493 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,Washer,Dryer,"Smok... | 59.0 | 2 | moderate | 0 | 0 | 8152191 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
| 536 | Other neighborhoods | 47.684273 | -122.326616 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 140.0 | 2 | moderate | 1 | 1 | 103908 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 537 | Other neighborhoods | 47.670307 | -122.339095 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Green Lake | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 60.0 | 1 | flexible | 0 | 0 | 783061 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 538 | Other neighborhoods | 47.675720 | -122.332177 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 215.0 | 3 | flexible | 0 | 0 | 7901725 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 539 | Other neighborhoods | 47.678537 | -122.325013 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 5 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 4968752 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 540 | Other neighborhoods | 47.687246 | -122.334696 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 40.0 | 1 | strict | 0 | 0 | 14386 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 541 | Other neighborhoods | 47.673455 | -122.337212 | House | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Green Lake | Private room | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 99.0 | 1 | flexible | 0 | 0 | 7517215 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 542 | Other neighborhoods | 47.687131 | -122.334514 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Private room | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 45.0 | 1 | moderate | 0 | 0 | 1602421 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 543 | Other neighborhoods | 47.688337 | -122.343907 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 2 | moderate | 0 | 0 | 3821822 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 544 | Other neighborhoods | 47.676115 | -122.332438 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 119.0 | 2 | moderate | 0 | 0 | 6073437 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 545 | Other neighborhoods | 47.671322 | -122.336827 | House | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Green Lake | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 99.0 | 1 | flexible | 0 | 0 | 7917700 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 546 | Other neighborhoods | 47.674781 | -122.324622 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 225.0 | 2 | moderate | 0 | 0 | 6278181 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 547 | Other neighborhoods | 47.681908 | -122.327853 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Green Lake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 85.0 | 1 | moderate | 0 | 0 | 4279578 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 548 | Other neighborhoods | 47.675139 | -122.333284 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 135.0 | 4 | strict | 0 | 0 | 9907337 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 549 | Other neighborhoods | 47.675724 | -122.324693 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 335.0 | 2 | strict | 0 | 0 | 1796861 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 550 | Other neighborhoods | 47.681106 | -122.323946 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 1 | flexible | 0 | 0 | 4211836 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 551 | Other neighborhoods | 47.676739 | -122.330191 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 90.0 | 2 | flexible | 0 | 0 | 4025954 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 552 | Other neighborhoods | 47.686532 | -122.337773 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Green Lake | Entire home/apt | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 111.0 | 1 | flexible | 0 | 0 | 6154478 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 553 | Other neighborhoods | 47.684722 | -122.338821 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 110.0 | 3 | strict | 0 | 0 | 84030 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 554 | Other neighborhoods | 47.688907 | -122.334013 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Green Lake | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 325.0 | 4 | strict | 0 | 0 | 4235559 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 555 | Cascade | 47.633474 | -122.343445 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 0.0 | 0 | Westlake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | strict | 0 | 0 | 830948 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 556 | Cascade | 47.627943 | -122.341271 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Westlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 190.0 | 2 | moderate | 0 | 0 | 3468261 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 557 | Cascade | 47.628664 | -122.342709 | Apartment | 1.0 | Couch | 0 | 0.0 | 0.0 | 0 | Westlake | Entire home/apt | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 65.0 | 15 | flexible | 0 | 0 | 10026648 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 558 | Cascade | 47.632010 | -122.342737 | Condominium | 2.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | Westlake | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | moderate | 0 | 0 | 9117633 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 559 | Cascade | 47.632966 | -122.341305 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Westlake | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 69.0 | 1 | flexible | 0 | 0 | 9158383 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 560 | Cascade | 47.633403 | -122.342631 | Apartment | 2.0 | Real Bed | a few days or more | 33.0 | 0.0 | 0 | Westlake | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 400.0 | 3 | strict | 0 | 0 | 1145590 | 8.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 561 | Cascade | 47.631194 | -122.341304 | Boat | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Westlake | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 150.0 | 1 | flexible | 0 | 0 | 5020848 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 |
| 562 | Cascade | 47.636190 | -122.342589 | Apartment | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Westlake | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 200.0 | 1 | flexible | 0 | 0 | 9600159 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 563 | Cascade | 47.636155 | -122.340421 | House | 2.0 | Real Bed | within an hour | 81.0 | 100.0 | 0 | Westlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 141.0 | 1 | strict | 0 | 0 | 3522409 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 564 | Cascade | 47.632626 | -122.341801 | Apartment | 1.0 | Real Bed | within a day | 91.0 | 100.0 | 0 | Westlake | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 85.0 | 1 | flexible | 0 | 0 | 9492873 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 565 | Cascade | 47.631674 | -122.340508 | Boat | 6.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Westlake | Entire home/apt | 8 | 4.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 775.0 | 2 | strict | 0 | 0 | 5534463 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 566 | Cascade | 47.637301 | -122.340157 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Westlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 2 | flexible | 0 | 0 | 9409233 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 567 | Cascade | 47.629375 | -122.339746 | Boat | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Westlake | Entire home/apt | 4 | 2.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 249.0 | 1 | flexible | 0 | 0 | 9531265 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 568 | Cascade | 47.627160 | -122.343223 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | Westlake | Entire home/apt | 2 | 1.0 | 1.0 | 95.0 | 4 | flexible | 0 | 0 | 5364609 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 569 | Cascade | 47.630583 | -122.343449 | Townhouse | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Westlake | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Smo... | 122.0 | 1 | flexible | 0 | 0 | 6629132 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 570 | Cascade | 47.628202 | -122.343516 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Westlake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Buz... | 170.0 | 5 | strict | 0 | 0 | 5489676 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 571 | Cascade | 47.634358 | -122.340990 | Apartment | 1.0 | Real Bed | within a few hours | 91.0 | 100.0 | 0 | Westlake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 1 | moderate | 0 | 0 | 9347157 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 572 | Central Area | 47.620016 | -122.299805 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 90.0 | 2 | strict | 0 | 0 | 10035644 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 573 | Central Area | 47.613320 | -122.300567 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 88.0 | 2 | moderate | 0 | 0 | 8293287 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 574 | Central Area | 47.613754 | -122.300458 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 125.0 | 2 | moderate | 0 | 0 | 910784 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 575 | Central Area | 47.621911 | -122.297501 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 145.0 | 2 | strict | 0 | 0 | 7071222 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 576 | Central Area | 47.613037 | -122.299453 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 3.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 275.0 | 3 | flexible | 1 | 1 | 8687716 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 577 | Central Area | 47.618253 | -122.298468 | Townhouse | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mann | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 7430679 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 578 | Central Area | 47.613060 | -122.297385 | Apartment | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 2 | strict | 0 | 0 | 180939 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 579 | Central Area | 47.603127 | -122.300671 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 140.0 | 1 | strict | 0 | 0 | 6884604 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 580 | Central Area | 47.620916 | -122.297915 | Condominium | 3.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Mann | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 2 | strict | 0 | 0 | 7397476 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 581 | Central Area | 47.612198 | -122.297771 | House | 3.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Mann | Entire home/apt | 5 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 225.0 | 3 | strict | 0 | 0 | 1063855 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 582 | Central Area | 47.618586 | -122.301505 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 60.0 | 1 | flexible | 0 | 0 | 8865006 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 583 | Central Area | 47.616084 | -122.298171 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 1 | flexible | 0 | 0 | 8069192 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 584 | Central Area | 47.603270 | -122.302161 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Pets live on this propert... | 65.0 | 2 | moderate | 0 | 0 | 2800448 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 585 | Central Area | 47.617632 | -122.300557 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 78.0 | 1 | flexible | 0 | 0 | 9076287 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 586 | Central Area | 47.617801 | -122.300024 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Mann | Shared room | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises",Heating,Was... | 59.0 | 1 | strict | 0 | 0 | 7462439 | 9.714286 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 587 | Central Area | 47.620393 | -122.299576 | Townhouse | 6.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Mann | Entire home/apt | 11 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 400.0 | 2 | strict | 0 | 0 | 8225635 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 588 | Central Area | 47.619822 | -122.297964 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 55.0 | 2 | moderate | 0 | 0 | 2966415 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 589 | Central Area | 47.618949 | -122.298350 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Mann | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 129.0 | 1 | moderate | 0 | 0 | 4639465 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 590 | Central Area | 47.611105 | -122.299132 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 2 | flexible | 0 | 0 | 7402190 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 591 | Central Area | 47.614010 | -122.296607 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 1 | flexible | 0 | 0 | 9448719 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 592 | Central Area | 47.609578 | -122.298864 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 160.0 | 2 | moderate | 0 | 0 | 5670781 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 593 | Central Area | 47.605269 | -122.298788 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 1 | flexible | 0 | 0 | 1905473 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 594 | Central Area | 47.604238 | -122.299447 | House | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 80.0 | 2 | flexible | 0 | 0 | 7266662 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 595 | Central Area | 47.618188 | -122.301921 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 109.0 | 1 | flexible | 0 | 0 | 9095510 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 596 | Central Area | 47.608880 | -122.298712 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 1 | flexible | 0 | 0 | 7401854 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 597 | Central Area | 47.614332 | -122.301329 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Mann | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | flexible | 0 | 0 | 5174876 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 598 | Central Area | 47.614818 | -122.300343 | Apartment | 4.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | strict | 0 | 0 | 1256883 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 599 | Central Area | 47.609217 | -122.302570 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 2 | moderate | 0 | 0 | 8072850 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 600 | Central Area | 47.608465 | -122.296854 | House | 2.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Mann | Entire home/apt | 4 | 1.5 | 1.0 | TV,"Cable TV",Kitchen,"Free Parking on Premise... | 73.0 | 2 | moderate | 0 | 0 | 6706377 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 601 | Central Area | 47.612157 | -122.301197 | House | 9.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Mann | Entire home/apt | 15 | 3.0 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 400.0 | 2 | strict | 0 | 0 | 9738522 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 602 | Central Area | 47.620139 | -122.296357 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 170.0 | 4 | flexible | 0 | 0 | 2995996 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 603 | Central Area | 47.615321 | -122.301760 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mann | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 48.0 | 1 | flexible | 0 | 0 | 6674408 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 604 | Central Area | 47.620223 | -122.298577 | Townhouse | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Mann | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | moderate | 0 | 0 | 6801095 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 605 | Central Area | 47.612313 | -122.298252 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 82.0 | 3 | moderate | 1 | 1 | 143704 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 606 | Central Area | 47.618710 | -122.296424 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Mann | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 2 | flexible | 0 | 0 | 9258305 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 607 | Central Area | 47.615180 | -122.301613 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mann | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 199.0 | 2 | strict | 0 | 0 | 3727017 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 608 | Central Area | 47.612851 | -122.299682 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 105.0 | 2 | moderate | 0 | 1 | 789966 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 609 | Central Area | 47.613238 | -122.297669 | House | 2.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Mann | Entire home/apt | 8 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 250.0 | 1 | flexible | 0 | 0 | 6864319 | 7.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 610 | Central Area | 47.613981 | -122.296740 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Mann | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 2 | moderate | 0 | 0 | 1539463 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 611 | Central Area | 47.618933 | -122.299851 | Townhouse | 6.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Mann | Entire home/apt | 9 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 1 | strict | 0 | 0 | 9591787 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 612 | Central Area | 47.611189 | -122.300785 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mann | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 2 | moderate | 0 | 0 | 10279830 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 613 | Central Area | 47.616623 | -122.298606 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Mann | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 95.0 | 2 | strict | 0 | 0 | 1956553 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 614 | Central Area | 47.620883 | -122.297745 | Condominium | 2.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Mann | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 7396508 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 615 | Central Area | 47.612977 | -122.301473 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 65.0 | 1 | moderate | 0 | 0 | 6272065 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 616 | Central Area | 47.613796 | -122.300729 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 1 | flexible | 0 | 0 | 7072218 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 617 | Central Area | 47.619429 | -122.298276 | Townhouse | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Mann | Entire home/apt | 5 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 300.0 | 3 | strict | 0 | 0 | 7075948 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 618 | Central Area | 47.611198 | -122.301087 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 89.0 | 1 | flexible | 0 | 0 | 7543458 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 619 | Central Area | 47.618222 | -122.298536 | House | 1.0 | Real Bed | within a day | 78.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 109.0 | 3 | moderate | 0 | 0 | 3769336 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 620 | Central Area | 47.610499 | -122.297257 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning","Wheelc... | 75.0 | 3 | moderate | 0 | 0 | 8666707 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 621 | Central Area | 47.610156 | -122.302408 | Apartment | 3.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 99.0 | 1 | strict | 0 | 0 | 7205443 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 622 | Central Area | 47.622337 | -122.297436 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 5 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | strict | 0 | 0 | 193371 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 623 | Central Area | 47.609523 | -122.298658 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 175.0 | 1 | strict | 0 | 0 | 9957555 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 624 | Central Area | 47.608103 | -122.297061 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mann | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 120.0 | 2 | moderate | 0 | 0 | 6795678 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 625 | Central Area | 47.618475 | -122.298679 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 45.0 | 1 | flexible | 0 | 0 | 9300972 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 626 | Central Area | 47.617102 | -122.296559 | Townhouse | 5.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Mann | Entire home/apt | 7 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | strict | 0 | 0 | 8047522 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 627 | Central Area | 47.610403 | -122.300333 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 95.0 | 2 | moderate | 0 | 0 | 9457328 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 628 | Central Area | 47.619161 | -122.298655 | Townhouse | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 50.0 | 1 | flexible | 0 | 0 | 6576006 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 629 | Central Area | 47.617209 | -122.301754 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 129.0 | 1 | flexible | 0 | 0 | 7971334 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 630 | Central Area | 47.612867 | -122.298479 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 3.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 295.0 | 1 | strict | 1 | 1 | 1984962 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 631 | Central Area | 47.615608 | -122.301896 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | strict | 0 | 0 | 9292039 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 632 | Central Area | 47.617426 | -122.300902 | House | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Mann | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 2 | strict | 0 | 0 | 6661617 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 633 | Central Area | 47.608819 | -122.300736 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Free Parking ... | 150.0 | 1 | flexible | 0 | 0 | 8848854 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 634 | Central Area | 47.612944 | -122.298557 | House | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Mann | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 109.0 | 1 | flexible | 0 | 0 | 3251069 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 635 | Central Area | 47.618375 | -122.297705 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 85.0 | 2 | moderate | 0 | 0 | 4111137 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 636 | Central Area | 47.610271 | -122.301869 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mann | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 2 | moderate | 0 | 0 | 4760472 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 637 | Central Area | 47.615968 | -122.298217 | House | 2.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Mann | Private room | 4 | 2.5 | 1.0 | 115.0 | 1 | flexible | 0 | 0 | 8968925 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 638 | Central Area | 47.602795 | -122.301674 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mann | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 85.0 | 2 | moderate | 0 | 0 | 3293438 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 639 | Central Area | 47.609136 | -122.295188 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Air Conditioning",Kitchen,"Pets Allo... | 200.0 | 1 | flexible | 0 | 0 | 9210978 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 640 | Central Area | 47.618316 | -122.290049 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 1 | Madrona | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 169.0 | 2 | strict | 0 | 0 | 3319386 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 641 | Central Area | 47.618155 | -122.287583 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 130.0 | 2 | strict | 0 | 0 | 7717813 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 642 | Central Area | 47.616357 | -122.291336 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Madrona | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Pets live on t... | 79.0 | 2 | moderate | 0 | 0 | 5578943 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 |
| 643 | Central Area | 47.613566 | -122.290058 | Cabin | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Madrona | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Heating,Essentials | 125.0 | 2 | strict | 0 | 0 | 7660932 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 644 | Central Area | 47.609264 | -122.285732 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Madrona | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 80.0 | 1 | flexible | 0 | 0 | 4271221 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 645 | Central Area | 47.616199 | -122.291192 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 66.0 | 1 | flexible | 0 | 0 | 6358605 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 646 | Central Area | 47.608237 | -122.290090 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Madrona | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet" | 97.0 | 2 | flexible | 0 | 0 | 1439237 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
| 647 | Central Area | 47.613163 | -122.282326 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 1 | Madrona | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 58.0 | 1 | moderate | 0 | 0 | 7775167 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 |
| 648 | Central Area | 47.617087 | -122.293139 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 1 | Madrona | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 3 | moderate | 0 | 0 | 7437784 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 649 | Central Area | 47.610440 | -122.295612 | House | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Madrona | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 9628972 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 650 | Central Area | 47.615005 | -122.290002 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Madrona | Entire home/apt | 10 | 3.5 | 5.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 350.0 | 3 | strict | 0 | 0 | 8425013 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 651 | Central Area | 47.614556 | -122.290179 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 375.0 | 3 | strict | 0 | 0 | 6925807 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 652 | Central Area | 47.610939 | -122.294089 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 240.0 | 3 | moderate | 0 | 0 | 7400955 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 653 | Central Area | 47.610934 | -122.293821 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 189.0 | 2 | flexible | 0 | 0 | 8174389 | 8.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 654 | Central Area | 47.610966 | -122.293327 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 6 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | moderate | 0 | 0 | 6292452 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 655 | Central Area | 47.608657 | -122.294864 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 90.0 | 2 | moderate | 0 | 0 | 9095668 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 656 | Central Area | 47.609070 | -122.296133 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Madrona | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 1 | moderate | 0 | 0 | 413733 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 657 | Central Area | 47.614958 | -122.289126 | Townhouse | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 7 | 1.5 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 155.0 | 3 | strict | 0 | 0 | 8783900 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 658 | Central Area | 47.609749 | -122.290109 | House | 5.0 | Real Bed | within a day | 75.0 | 0.0 | 0 | Madrona | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 3 | strict | 0 | 0 | 639130 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 659 | Central Area | 47.616328 | -122.295482 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Madrona | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 69.0 | 1 | moderate | 0 | 0 | 2484067 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 660 | Central Area | 47.610281 | -122.295744 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 3 | strict | 0 | 0 | 3533112 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 661 | Central Area | 47.608144 | -122.291963 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Madrona | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 1 | strict | 0 | 0 | 2249292 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 662 | Central Area | 47.614982 | -122.283570 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Madrona | Entire home/apt | 5 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Indoor Fireplace"... | 225.0 | 3 | flexible | 0 | 0 | 7838294 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 663 | Central Area | 47.618536 | -122.295724 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 135.0 | 2 | flexible | 0 | 0 | 6133354 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 664 | Central Area | 47.612512 | -122.289944 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 85.0 | 2 | strict | 0 | 0 | 7987836 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 665 | Central Area | 47.611217 | -122.296078 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 110.0 | 1 | moderate | 0 | 0 | 9910025 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 666 | Central Area | 47.616017 | -122.292662 | Townhouse | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Indoor... | 110.0 | 1 | moderate | 0 | 0 | 7364024 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 |
| 667 | Central Area | 47.610189 | -122.292170 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 250.0 | 2 | flexible | 0 | 0 | 9362082 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 668 | Central Area | 47.611525 | -122.288819 | Other | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 1 | strict | 0 | 0 | 8847108 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 669 | Central Area | 47.611269 | -122.291465 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Madrona | Private room | 1 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Hea... | 50.0 | 1 | flexible | 0 | 0 | 7462428 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 670 | Central Area | 47.615684 | -122.285174 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 78.0 | 1 | moderate | 0 | 0 | 4370312 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 671 | Central Area | 47.615933 | -122.285314 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 1 | moderate | 0 | 0 | 4053972 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 672 | Central Area | 47.617509 | -122.292023 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madrona | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | moderate | 0 | 0 | 6209191 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 673 | Central Area | 47.615897 | -122.282043 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 8 | 1.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 295.0 | 2 | strict | 0 | 0 | 10123910 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 674 | Central Area | 47.615199 | -122.294179 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 175.0 | 1 | moderate | 0 | 0 | 6412858 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 675 | Central Area | 47.608084 | -122.294342 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 2 | moderate | 0 | 0 | 3987838 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 676 | Central Area | 47.616253 | -122.293067 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 68.0 | 2 | moderate | 0 | 0 | 7027507 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 677 | Central Area | 47.615125 | -122.294428 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 74.0 | 2 | moderate | 0 | 0 | 6587443 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 678 | Central Area | 47.611711 | -122.287723 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 80.0 | 5 | flexible | 0 | 0 | 10204689 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 679 | Central Area | 47.616088 | -122.288502 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 4 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 500.0 | 1 | strict | 0 | 0 | 1029680 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 680 | Central Area | 47.615534 | -122.283003 | Apartment | 2.0 | Real Bed | within an hour | 80.0 | 100.0 | 1 | Madrona | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | moderate | 0 | 0 | 7208439 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 681 | Central Area | 47.610564 | -122.286344 | House | 5.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Madrona | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 500.0 | 3 | strict | 0 | 0 | 8327765 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 682 | Central Area | 47.618353 | -122.287456 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Madrona | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 115.0 | 2 | strict | 0 | 0 | 3953611 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 683 | Central Area | 47.616490 | -122.294018 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Madrona | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 125.0 | 3 | moderate | 0 | 0 | 2584354 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 684 | Central Area | 47.612173 | -122.291928 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 8 | 3.0 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 350.0 | 3 | strict | 0 | 0 | 4574700 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 685 | Central Area | 47.615566 | -122.285279 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madrona | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 140.0 | 1 | flexible | 0 | 0 | 5685646 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 686 | University District | 47.665198 | -122.305289 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 80.0 | 2 | flexible | 1 | 1 | 977722 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 687 | University District | 47.664150 | -122.303972 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 145.0 | 1 | moderate | 0 | 0 | 2931922 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 688 | University District | 47.669407 | -122.308348 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | University District | Entire home/apt | 6 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Pets l... | 150.0 | 7 | moderate | 0 | 0 | 8253955 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 689 | University District | 47.664046 | -122.303532 | Condominium | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Buzze... | 65.0 | 7 | moderate | 0 | 0 | 6426462 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 690 | University District | 47.657329 | -122.317467 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 50.0 | 4 | strict | 0 | 0 | 8154238 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 691 | University District | 47.664497 | -122.312773 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 65.0 | 1 | strict | 0 | 0 | 5020861 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 692 | University District | 47.659933 | -122.321442 | Other | 1.0 | Pull-out Sofa | within a day | 100.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 45.0 | 1 | flexible | 0 | 0 | 9611409 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 693 | University District | 47.662155 | -122.303545 | Apartment | 1.0 | Futon | within an hour | 100.0 | 0.0 | 0 | University District | Private room | 2 | 0.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 35.0 | 1 | flexible | 0 | 0 | 9282348 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 694 | University District | 47.664225 | -122.309741 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 41.0 | 1 | strict | 0 | 0 | 8939306 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 695 | University District | 47.667788 | -122.319985 | House | 1.0 | Futon | within an hour | 100.0 | 0.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 59.0 | 1 | moderate | 0 | 0 | 5423692 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 696 | University District | 47.657492 | -122.319898 | Townhouse | 1.0 | Real Bed | within an hour | 93.0 | 100.0 | 0 | University District | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 49.0 | 1 | strict | 0 | 0 | 9159975 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 697 | University District | 47.666640 | -122.316482 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 47.0 | 1 | strict | 0 | 0 | 7561272 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 698 | University District | 47.667223 | -122.316798 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 65.0 | 2 | moderate | 0 | 0 | 7326419 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 699 | University District | 47.658898 | -122.322173 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 41.0 | 1 | flexible | 0 | 0 | 9373607 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 700 | University District | 47.659005 | -122.321756 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 35.0 | 2 | strict | 0 | 0 | 6717555 | 8.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 701 | University District | 47.664913 | -122.309764 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 43.0 | 1 | strict | 0 | 0 | 8939433 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 702 | University District | 47.663394 | -122.311496 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 44.0 | 1 | strict | 0 | 0 | 8939503 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 703 | University District | 47.661310 | -122.310072 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | moderate | 0 | 0 | 8742753 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 704 | University District | 47.664521 | -122.309598 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 45.0 | 1 | strict | 0 | 0 | 8939687 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 705 | University District | 47.672056 | -122.317719 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | University District | Entire home/apt | 2 | 1.0 | 2.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 98.0 | 3 | flexible | 0 | 0 | 3793406 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 706 | University District | 47.657373 | -122.314606 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 109.0 | 1 | flexible | 0 | 0 | 9134196 | 6.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 707 | University District | 47.666378 | -122.316892 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 75.0 | 4 | moderate | 0 | 0 | 6007267 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 708 | University District | 47.658909 | -122.314794 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 88.0 | 1 | moderate | 0 | 0 | 3422894 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 709 | University District | 47.662181 | -122.313391 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,E... | 98.0 | 2 | moderate | 0 | 0 | 3630581 | 8.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 710 | University District | 47.657330 | -122.317809 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 75.0 | 1 | moderate | 0 | 0 | 9394508 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 711 | University District | 47.666956 | -122.315598 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 3 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 40.0 | 1 | strict | 0 | 0 | 7348578 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 712 | University District | 47.657071 | -122.314260 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 85.0 | 1 | strict | 0 | 1 | 8869680 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 713 | University District | 47.656342 | -122.318840 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 100.0 | 1 | moderate | 0 | 0 | 7678429 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 714 | University District | 47.664949 | -122.321133 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 10 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 275.0 | 3 | strict | 0 | 0 | 2979387 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 715 | University District | 47.667016 | -122.304401 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 1 | strict | 0 | 0 | 1531458 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 716 | University District | 47.659170 | -122.316535 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 78.0 | 2 | moderate | 0 | 0 | 1549973 | 7.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 717 | University District | 47.664562 | -122.308399 | Apartment | 2.0 | Real Bed | within a day | 75.0 | 0.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 7 | strict | 0 | 0 | 1123977 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 718 | University District | 47.658929 | -122.316308 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 1 | moderate | 0 | 0 | 5719631 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 719 | University District | 47.663140 | -122.302850 | Condominium | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 155.0 | 1 | moderate | 0 | 0 | 9580209 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 720 | University District | 47.657606 | -122.314445 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 109.0 | 1 | flexible | 0 | 0 | 9364220 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 721 | University District | 47.662395 | -122.314630 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Buzzer/Wireless I... | 80.0 | 1 | moderate | 0 | 0 | 9663221 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 722 | University District | 47.663071 | -122.313017 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 80.0 | 1 | flexible | 0 | 0 | 9636952 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 723 | University District | 47.670569 | -122.315795 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 125.0 | 1 | strict | 0 | 0 | 8594059 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 724 | University District | 47.656414 | -122.317238 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 55.0 | 1 | moderate | 0 | 0 | 6278756 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 725 | University District | 47.661694 | -122.312914 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 98.0 | 1 | moderate | 0 | 0 | 3679617 | 8.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 726 | University District | 47.663145 | -122.313413 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 82.0 | 1 | moderate | 0 | 0 | 9416551 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 727 | University District | 47.657304 | -122.318660 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 70.0 | 2 | strict | 0 | 0 | 8322107 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 728 | University District | 47.657418 | -122.320644 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 2 | moderate | 0 | 0 | 9511676 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 729 | University District | 47.664365 | -122.303226 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | moderate | 0 | 0 | 3158243 | 8.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 730 | University District | 47.667575 | -122.318716 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | University District | Entire home/apt | 12 | 3.5 | 5.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 3 | strict | 0 | 0 | 8327124 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 731 | University District | 47.668252 | -122.309450 | House | 6.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | University District | Entire home/apt | 9 | 2.5 | 4.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 295.0 | 3 | strict | 1 | 1 | 4311078 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 732 | University District | 47.659626 | -122.317421 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 105.0 | 2 | moderate | 0 | 0 | 3329962 | 8.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 733 | University District | 47.657530 | -122.317853 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | moderate | 0 | 0 | 3263071 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 734 | University District | 47.659329 | -122.313456 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet","Wheelchair Acces... | 75.0 | 3 | flexible | 0 | 0 | 7302675 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 735 | University District | 47.661454 | -122.312925 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 95.0 | 3 | strict | 0 | 0 | 6250399 | 6.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 736 | University District | 47.667492 | -122.315282 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Family/Kid Friend... | 75.0 | 2 | moderate | 0 | 0 | 7387294 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 737 | University District | 47.666677 | -122.316344 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 45.0 | 1 | strict | 0 | 0 | 7363462 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 738 | University District | 47.666225 | -122.317609 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Private room | 1 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Hot Tub"... | 30.0 | 1 | flexible | 0 | 0 | 6796336 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 739 | University District | 47.658658 | -122.318967 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 42.0 | 4 | strict | 0 | 0 | 8156894 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 740 | University District | 47.671370 | -122.315799 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 7 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 2 | strict | 0 | 0 | 1150519 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 741 | University District | 47.671406 | -122.316785 | House | 1.0 | Airbed | within a day | 100.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 43.0 | 1 | flexible | 0 | 0 | 5969872 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 742 | University District | 47.663117 | -122.318813 | Apartment | 1.0 | Real Bed | a few days or more | 38.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 125.0 | 1 | flexible | 0 | 0 | 9617068 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 743 | University District | 47.668183 | -122.317372 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 112.0 | 2 | strict | 0 | 0 | 4438188 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 744 | University District | 47.657125 | -122.317822 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 85.0 | 4 | strict | 0 | 0 | 1521633 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 745 | University District | 47.657007 | -122.319620 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 63.0 | 1 | flexible | 0 | 0 | 6623079 | 8.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 746 | University District | 47.667096 | -122.316809 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 41.0 | 1 | strict | 0 | 0 | 7561254 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 747 | University District | 47.665804 | -122.320888 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 5 | strict | 0 | 0 | 3494608 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 748 | University District | 47.662502 | -122.313416 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Essentials | 70.0 | 3 | strict | 0 | 0 | 3085726 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |
| 749 | University District | 47.666914 | -122.314273 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 85.0 | 3 | moderate | 0 | 0 | 2256124 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 750 | University District | 47.661250 | -122.314393 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 110.0 | 1 | strict | 0 | 0 | 7071021 | 7.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 751 | University District | 47.665819 | -122.303171 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Heating,Dryer,"Smoke De... | 53.0 | 1 | flexible | 0 | 0 | 9465815 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 752 | University District | 47.667651 | -122.319480 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | moderate | 0 | 0 | 6938103 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 753 | University District | 47.671199 | -122.315093 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 125.0 | 2 | strict | 0 | 0 | 6913414 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 754 | University District | 47.661323 | -122.314984 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 90.0 | 2 | moderate | 0 | 0 | 3706719 | 8.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 755 | University District | 47.664437 | -122.306738 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 85.0 | 2 | strict | 0 | 0 | 8174626 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 756 | University District | 47.661168 | -122.314651 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 85.0 | 2 | moderate | 0 | 0 | 1571230 | 8.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 757 | University District | 47.661011 | -122.313734 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Buzzer/Wireless ... | 88.0 | 2 | moderate | 0 | 0 | 4270642 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 758 | University District | 47.662672 | -122.304370 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 92.0 | 2 | moderate | 0 | 0 | 5407311 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 759 | University District | 47.658953 | -122.321979 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 28.0 | 1 | flexible | 0 | 0 | 9976135 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 760 | University District | 47.661485 | -122.315693 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 70.0 | 2 | moderate | 0 | 0 | 9558353 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 761 | University District | 47.668523 | -122.315454 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | University District | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 78.0 | 2 | moderate | 0 | 0 | 7247767 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 762 | University District | 47.669486 | -122.314550 | House | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 30.0 | 1 | flexible | 0 | 0 | 7035077 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 763 | University District | 47.661294 | -122.313182 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Buzzer/Wireless I... | 93.0 | 2 | moderate | 0 | 0 | 7353834 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 764 | University District | 47.663179 | -122.303990 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Buzzer/Wireles... | 65.0 | 1 | moderate | 0 | 0 | 9319891 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 765 | University District | 47.664047 | -122.318220 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 120.0 | 1 | flexible | 0 | 0 | 6575407 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 766 | University District | 47.668715 | -122.316316 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 40.0 | 1 | strict | 0 | 0 | 7550234 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 767 | University District | 47.663122 | -122.309840 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 43.0 | 1 | strict | 0 | 0 | 8939736 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 768 | University District | 47.668338 | -122.315186 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | University District | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 70.0 | 2 | moderate | 0 | 0 | 7247720 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 769 | University District | 47.658363 | -122.318006 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | moderate | 0 | 0 | 1786923 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 770 | University District | 47.661097 | -122.318774 | Apartment | 2.0 | Real Bed | within a few hours | 60.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 90.0 | 2 | strict | 0 | 0 | 7649837 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 771 | University District | 47.664424 | -122.303212 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 1 | strict | 0 | 0 | 3610724 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 772 | University District | 47.660442 | -122.313768 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 115.0 | 1 | flexible | 0 | 0 | 7988337 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 773 | University District | 47.658770 | -122.313690 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 89.0 | 1 | strict | 0 | 1 | 1773803 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 774 | University District | 47.658258 | -122.313566 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 2.0 | "Elevator in Building",Washer,"Smoke Detector" | 185.0 | 1 | flexible | 0 | 0 | 7536074 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
| 775 | University District | 47.661546 | -122.314794 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 85.0 | 1 | strict | 0 | 0 | 3770248 | 7.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 776 | University District | 47.668566 | -122.307462 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 2 | strict | 0 | 0 | 9097754 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 777 | University District | 47.658836 | -122.318150 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 95.0 | 2 | moderate | 0 | 0 | 3291295 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 778 | University District | 47.657217 | -122.314233 | Apartment | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 8 | 1.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 306.0 | 1 | strict | 0 | 0 | 8171726 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 779 | University District | 47.666922 | -122.317202 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Shared room | 4 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 29.0 | 1 | strict | 0 | 0 | 10031055 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 780 | University District | 47.662995 | -122.310222 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 47.0 | 1 | strict | 0 | 0 | 8939595 | 8.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 781 | University District | 47.658249 | -122.317639 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 50.0 | 4 | strict | 0 | 0 | 8155580 | 8.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 782 | University District | 47.658561 | -122.316087 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 1 | moderate | 0 | 0 | 6705584 | 8.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 783 | University District | 47.661474 | -122.313563 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 83.0 | 3 | moderate | 0 | 0 | 1417880 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 784 | University District | 47.667657 | -122.317807 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 73.0 | 1 | flexible | 0 | 0 | 7245692 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 785 | University District | 47.656658 | -122.320314 | Townhouse | 2.0 | Real Bed | within an hour | 93.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 92.0 | 1 | strict | 0 | 0 | 7153101 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 786 | University District | 47.662701 | -122.309732 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | University District | Private room | 1 | 0.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | flexible | 0 | 0 | 9014572 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 787 | University District | 47.664486 | -122.304671 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 1 | University District | Shared room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 59.0 | 1 | moderate | 1 | 1 | 585418 | 9.857143 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 788 | University District | 47.662361 | -122.302424 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 145.0 | 1 | strict | 0 | 0 | 4484426 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 789 | University District | 47.658632 | -122.317766 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | moderate | 0 | 0 | 3291777 | 7.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 790 | University District | 47.663218 | -122.304371 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 150.0 | 1 | strict | 0 | 0 | 3096191 | 7.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 791 | University District | 47.667132 | -122.316449 | Apartment | 2.0 | Real Bed | within a few hours | 95.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 85.0 | 1 | flexible | 0 | 0 | 9865846 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 792 | University District | 47.663135 | -122.314558 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 98.0 | 2 | moderate | 0 | 0 | 6249536 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 793 | University District | 47.663968 | -122.306518 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 2 | strict | 0 | 0 | 5744931 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 794 | University District | 47.657314 | -122.319760 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 42.0 | 4 | strict | 0 | 0 | 8156764 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 795 | University District | 47.658609 | -122.317713 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 0 | 0 | 3303857 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 796 | University District | 47.656882 | -122.318273 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 42.0 | 4 | strict | 0 | 0 | 8155710 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 797 | University District | 47.671605 | -122.315765 | House | 3.0 | Real Bed | within a day | 83.0 | 100.0 | 0 | University District | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | moderate | 0 | 0 | 3843706 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 798 | University District | 47.656971 | -122.318918 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | University District | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 42.0 | 4 | strict | 0 | 0 | 8156860 | 0.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 799 | University District | 47.663918 | -122.311342 | Apartment | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | University District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 40.0 | 1 | flexible | 0 | 0 | 9316399 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 800 | University District | 47.669023 | -122.315882 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 80.0 | 2 | moderate | 0 | 0 | 293890 | 8.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 801 | University District | 47.663532 | -122.311492 | Townhouse | 2.0 | Couch | within a day | 100.0 | 100.0 | 0 | University District | Shared room | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,Breakfast,Heating,... | 40.0 | 1 | flexible | 0 | 0 | 7915432 | 9.714286 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 802 | University District | 47.668816 | -122.318442 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | University District | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 275.0 | 1 | flexible | 0 | 0 | 7501583 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 803 | University District | 47.657414 | -122.315824 | Apartment | 1.0 | Airbed | within a day | 50.0 | 100.0 | 0 | University District | Entire home/apt | 1 | 1.0 | 0.0 | Kitchen,"Buzzer/Wireless Intercom",Heating,Was... | 47.0 | 1 | flexible | 0 | 0 | 10126050 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 804 | University District | 47.660488 | -122.314835 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | University District | Shared room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 118.0 | 1 | flexible | 0 | 0 | 7807658 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 805 | University District | 47.656970 | -122.315780 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | University District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 3 | strict | 0 | 0 | 1589461 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 806 | University District | 47.657476 | -122.317543 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | University District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 150.0 | 1 | moderate | 0 | 0 | 9303530 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 807 | University District | 47.670424 | -122.315279 | House | 2.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | University District | Entire home/apt | 5 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 2 | flexible | 0 | 0 | 7809718 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 808 | Central Area | 47.618939 | -122.292123 | House | 1.0 | Real Bed | within a day | 75.0 | 100.0 | 1 | Harrison/Denny-Blaine | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 88.0 | 1 | moderate | 0 | 1 | 140331 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 809 | Central Area | 47.623715 | -122.291227 | House | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Harrison/Denny-Blaine | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 139.0 | 1 | flexible | 0 | 0 | 9462315 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 810 | Central Area | 47.620162 | -122.295814 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Harrison/Denny-Blaine | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 128.0 | 2 | flexible | 0 | 0 | 565703 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 811 | Central Area | 47.624593 | -122.294547 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Harrison/Denny-Blaine | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 110.0 | 2 | strict | 0 | 0 | 1147349 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 812 | Central Area | 47.630511 | -122.281771 | House | 1.0 | Real Bed | within a day | 89.0 | 100.0 | 0 | Harrison/Denny-Blaine | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 210.0 | 1 | strict | 0 | 0 | 7262358 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 813 | Central Area | 47.619662 | -122.289557 | House | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Harrison/Denny-Blaine | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 155.0 | 20 | strict | 1 | 0 | 723723 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 814 | Central Area | 47.625434 | -122.290439 | House | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Harrison/Denny-Blaine | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 168.0 | 1 | moderate | 0 | 0 | 4757025 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 815 | Central Area | 47.620332 | -122.295535 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Harrison/Denny-Blaine | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 62.0 | 2 | strict | 0 | 0 | 3334052 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 816 | Central Area | 47.623026 | -122.295298 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Harrison/Denny-Blaine | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 80.0 | 2 | strict | 0 | 0 | 7036707 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 817 | Central Area | 47.622503 | -122.295616 | Apartment | 1.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Harrison/Denny-Blaine | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 105.0 | 2 | strict | 0 | 0 | 5272327 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 818 | Central Area | 47.624169 | -122.293045 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Harrison/Denny-Blaine | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 50.0 | 1 | moderate | 0 | 0 | 3921664 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 819 | Central Area | 47.619317 | -122.287374 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Harrison/Denny-Blaine | Private room | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises",Heating,"Fa... | 70.0 | 20 | strict | 1 | 0 | 9974658 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 820 | Central Area | 47.618393 | -122.286781 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Harrison/Denny-Blaine | Private room | 1 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 165.0 | 2 | strict | 0 | 0 | 2727984 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 821 | Central Area | 47.625361 | -122.291518 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Harrison/Denny-Blaine | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 79.0 | 1 | strict | 0 | 0 | 794633 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 822 | Central Area | 47.609502 | -122.311772 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 3 | moderate | 0 | 0 | 3959442 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 823 | Central Area | 47.606768 | -122.313438 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 90.0 | 1 | moderate | 0 | 0 | 6761267 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 824 | Central Area | 47.605107 | -122.303708 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 380.0 | 3 | strict | 0 | 0 | 6824408 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 825 | Central Area | 47.611906 | -122.303349 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 225.0 | 3 | strict | 0 | 0 | 2526129 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 826 | Central Area | 47.611369 | -122.314529 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Washer,Dryer... | 60.0 | 1 | flexible | 0 | 0 | 7859906 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 |
| 827 | Central Area | 47.613518 | -122.311605 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 100.0 | 2 | flexible | 0 | 0 | 9636248 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 828 | Central Area | 47.611092 | -122.306648 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 5 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 157.0 | 2 | flexible | 0 | 0 | 4623541 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 829 | Central Area | 47.615628 | -122.307837 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector",E... | 110.0 | 3 | strict | 1 | 1 | 1970725 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 830 | Central Area | 47.612517 | -122.314345 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 2 | flexible | 0 | 0 | 4418480 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 831 | Central Area | 47.613973 | -122.307888 | Townhouse | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 6 | 3.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 203.0 | 7 | moderate | 0 | 0 | 911001 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 832 | Central Area | 47.608442 | -122.310376 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 145.0 | 2 | moderate | 0 | 0 | 6670332 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 833 | Central Area | 47.605186 | -122.312302 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 1 | strict | 1 | 1 | 1249060 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 834 | Central Area | 47.603089 | -122.305234 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 79.0 | 1 | moderate | 0 | 0 | 1566487 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 835 | Central Area | 47.612475 | -122.308582 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Shared room | 1 | 1.0 | 1.0 | 40.0 | 1 | flexible | 0 | 0 | 9711153 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 836 | Central Area | 47.605523 | -122.307530 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 49.0 | 1 | strict | 1 | 1 | 444221 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 837 | Central Area | 47.605623 | -122.308905 | Cabin | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 56.0 | 1 | strict | 1 | 1 | 1018204 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 838 | Central Area | 47.605813 | -122.304040 | House | 4.0 | Real Bed | within an hour | 83.0 | 100.0 | 1 | Minor | Entire home/apt | 7 | 2.5 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 330.0 | 1 | strict | 0 | 0 | 4856986 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 839 | Central Area | 47.609982 | -122.304640 | Apartment | 2.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | flexible | 0 | 0 | 2130652 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 840 | Central Area | 47.606796 | -122.309086 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 8 | 3.0 | 4.0 | "Cable TV","Wireless Internet","Free Parking o... | 350.0 | 1 | strict | 0 | 0 | 5524530 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 841 | Central Area | 47.602310 | -122.305798 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 145.0 | 2 | strict | 0 | 0 | 9216874 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 842 | Central Area | 47.604891 | -122.306710 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 67.0 | 1 | moderate | 0 | 0 | 7971395 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 843 | Central Area | 47.610668 | -122.312553 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 3 | 2.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 69.0 | 2 | moderate | 0 | 0 | 2593263 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 844 | Central Area | 47.606640 | -122.308140 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 52.0 | 1 | strict | 1 | 1 | 443580 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 845 | Central Area | 47.610253 | -122.305049 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 2 | strict | 0 | 0 | 1614502 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 846 | Central Area | 47.603156 | -122.309855 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 90.0 | 1 | moderate | 0 | 0 | 4477426 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 847 | Central Area | 47.604406 | -122.305429 | House | 1.0 | Real Bed | within an hour | 83.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Family/Kid Friend... | 130.0 | 1 | strict | 0 | 0 | 7648716 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 848 | Central Area | 47.610679 | -122.312672 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 65.0 | 3 | moderate | 0 | 0 | 9696912 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 |
| 849 | Central Area | 47.615779 | -122.306826 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 155.0 | 1 | moderate | 0 | 0 | 3585592 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 850 | Central Area | 47.609777 | -122.313000 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 79.0 | 1 | flexible | 0 | 0 | 3757858 | 9.714286 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 851 | Central Area | 47.606149 | -122.303857 | Apartment | 1.0 | Airbed | within a day | 70.0 | 100.0 | 0 | Minor | Shared room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 60.0 | 1 | flexible | 0 | 0 | 7219838 | 9.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 852 | Central Area | 47.606613 | -122.306638 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 115.0 | 7 | flexible | 0 | 0 | 6022715 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 853 | Central Area | 47.605911 | -122.305446 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 60.0 | 2 | flexible | 0 | 0 | 7685745 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 854 | Central Area | 47.603388 | -122.307437 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 1 | flexible | 0 | 0 | 4565370 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 855 | Central Area | 47.611731 | -122.308267 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 80.0 | 2 | flexible | 0 | 0 | 4783817 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 856 | Central Area | 47.611111 | -122.311962 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 3 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 70.0 | 2 | moderate | 0 | 0 | 2593176 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 857 | Central Area | 47.611075 | -122.313627 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 1 | 2.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 55.0 | 2 | moderate | 0 | 0 | 3143227 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 858 | Central Area | 47.616002 | -122.308060 | House | 1.0 | Real Bed | within a day | 75.0 | 100.0 | 1 | Minor | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 72.0 | 2 | strict | 1 | 1 | 1214306 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 859 | Central Area | 47.611079 | -122.312820 | House | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | 67.0 | 1 | flexible | 0 | 0 | 9448215 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 860 | Central Area | 47.610174 | -122.312799 | House | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | 58.0 | 1 | flexible | 0 | 0 | 9369481 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 861 | Central Area | 47.605908 | -122.313947 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 1 | moderate | 1 | 1 | 3533224 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 862 | Central Area | 47.605875 | -122.307931 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 81.0 | 1 | strict | 1 | 1 | 443736 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 863 | Central Area | 47.616874 | -122.303270 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 58.0 | 1 | flexible | 0 | 0 | 6675927 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 864 | Central Area | 47.606207 | -122.306835 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 58.0 | 2 | strict | 0 | 0 | 1772119 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 865 | Central Area | 47.609797 | -122.315330 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 1 | Minor | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 100.0 | 1 | moderate | 1 | 1 | 7808495 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 866 | Central Area | 47.610402 | -122.313874 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,"Free Parking on Premises","Buzzer/Wir... | 110.0 | 2 | strict | 0 | 0 | 4539948 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 867 | Central Area | 47.609946 | -122.315637 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Was... | 75.0 | 2 | flexible | 0 | 0 | 7768727 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 |
| 868 | Central Area | 47.609562 | -122.315099 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 124.0 | 3 | strict | 1 | 1 | 769213 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 869 | Central Area | 47.611535 | -122.314325 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 150.0 | 2 | moderate | 0 | 0 | 5328449 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 870 | Central Area | 47.610656 | -122.314073 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 65.0 | 2 | moderate | 0 | 0 | 1763809 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 871 | Central Area | 47.602939 | -122.308409 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 225.0 | 2 | moderate | 0 | 0 | 1499596 | 8.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 872 | Central Area | 47.610027 | -122.304366 | House | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 12 | flexible | 0 | 0 | 4737727 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 873 | Central Area | 47.603326 | -122.313865 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 105.0 | 1 | flexible | 0 | 0 | 8242212 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 874 | Central Area | 47.610358 | -122.314032 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 158.0 | 2 | moderate | 0 | 0 | 8186781 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 875 | Central Area | 47.604150 | -122.303234 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Heating,"Family/Kid Fri... | 69.0 | 2 | strict | 0 | 0 | 7229015 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 876 | Central Area | 47.602137 | -122.314142 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 2 | flexible | 0 | 0 | 5814207 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 877 | Central Area | 47.612416 | -122.314504 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 99.0 | 1 | moderate | 0 | 0 | 2274086 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 878 | Central Area | 47.611221 | -122.306944 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 6 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 165.0 | 2 | strict | 0 | 0 | 4387985 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 879 | Central Area | 47.607679 | -122.315715 | Bungalow | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Heating,Washer,Dr... | 70.0 | 1 | moderate | 0 | 0 | 9909445 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 |
| 880 | Central Area | 47.605475 | -122.309478 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 118.0 | 1 | flexible | 0 | 0 | 7664899 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 881 | Central Area | 47.613501 | -122.312752 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 100.0 | 4 | flexible | 0 | 0 | 4773614 | 7.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 882 | Central Area | 47.601922 | -122.307979 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 90.0 | 1 | flexible | 0 | 0 | 3946674 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 883 | Central Area | 47.613276 | -122.314997 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 81.0 | 1 | strict | 0 | 0 | 8616488 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 884 | Central Area | 47.609104 | -122.311150 | Apartment | 1.0 | Real Bed | within an hour | 75.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 70.0 | 1 | moderate | 0 | 0 | 7518316 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 885 | Central Area | 47.611801 | -122.314161 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Pets live on this prop... | 69.0 | 1 | flexible | 0 | 0 | 5259194 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 886 | Central Area | 47.609418 | -122.312101 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 2 | strict | 0 | 0 | 9256702 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 887 | Central Area | 47.615617 | -122.304346 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,Breakfast,H... | 75.0 | 1 | flexible | 0 | 0 | 9240289 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 888 | Central Area | 47.607946 | -122.307540 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Kitchen,"Smoking Allowed",... | 70.0 | 2 | strict | 0 | 0 | 2032805 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 889 | Central Area | 47.610089 | -122.313681 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 179.0 | 1 | flexible | 0 | 0 | 3751503 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 890 | Central Area | 47.604096 | -122.305409 | House | 1.0 | Real Bed | within an hour | 83.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Washer,Dryer,"Smoke Detect... | 105.0 | 1 | strict | 0 | 0 | 7581974 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
| 891 | Central Area | 47.611089 | -122.315823 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Minor | Entire home/apt | 4 | 2.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 110.0 | 2 | strict | 0 | 0 | 6558980 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 892 | Central Area | 47.610575 | -122.304401 | Apartment | 2.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | flexible | 0 | 0 | 2399736 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 893 | Central Area | 47.613724 | -122.309164 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | TV,Kitchen,"Free Parking on Premises",Heating,... | 75.0 | 3 | flexible | 0 | 0 | 8674765 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 894 | Central Area | 47.610066 | -122.304881 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Smoking ... | 75.0 | 2 | flexible | 0 | 0 | 6004165 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 895 | Central Area | 47.606461 | -122.307478 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 3.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 111.0 | 2 | strict | 0 | 0 | 1826155 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 896 | Central Area | 47.606322 | -122.305577 | House | 2.0 | Real Bed | within an hour | 83.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Family/Kid Friend... | 108.0 | 1 | strict | 0 | 0 | 4857192 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 897 | Central Area | 47.605502 | -122.303837 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 82.0 | 2 | strict | 0 | 0 | 7748905 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 898 | Central Area | 47.607675 | -122.305618 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | strict | 0 | 0 | 973859 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 899 | Central Area | 47.613694 | -122.307325 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 220.0 | 2 | moderate | 0 | 0 | 6716380 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 900 | Central Area | 47.607511 | -122.307585 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 114.0 | 3 | flexible | 0 | 0 | 7953211 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 901 | Central Area | 47.612431 | -122.315897 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Pets live on this prop... | 59.0 | 1 | flexible | 0 | 0 | 5241773 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 902 | Central Area | 47.617225 | -122.302636 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Private room | 1 | 1.5 | 1.0 | "Wireless Internet",Kitchen,Essentials | 54.0 | 2 | flexible | 0 | 0 | 3144597 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 903 | Central Area | 47.613503 | -122.310803 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 75.0 | 1 | strict | 0 | 0 | 7698916 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 904 | Central Area | 47.615878 | -122.307739 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets Allowed",He... | 90.0 | 1 | moderate | 0 | 0 | 7305969 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 905 | Central Area | 47.602544 | -122.309864 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 0.5 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 95.0 | 2 | strict | 0 | 0 | 5069495 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 906 | Central Area | 47.602600 | -122.309515 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Minor | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Ind... | 160.0 | 3 | flexible | 0 | 0 | 1817878 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 907 | Central Area | 47.610752 | -122.312152 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 175.0 | 3 | strict | 0 | 0 | 4430381 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 908 | Central Area | 47.613962 | -122.304185 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Minor | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 37.0 | 2 | strict | 0 | 0 | 6528192 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 |
| 909 | Central Area | 47.612456 | -122.314889 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 2.0 | 2.0 | "Wireless Internet",Kitchen,"Pets Allowed","El... | 199.0 | 2 | strict | 0 | 0 | 3177005 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 910 | Central Area | 47.610937 | -122.310733 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 3 | strict | 0 | 0 | 4430233 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 911 | Central Area | 47.612402 | -122.311207 | House | 3.0 | Real Bed | within a few hours | 70.0 | 100.0 | 0 | Minor | Entire home/apt | 8 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 3 | strict | 1 | 1 | 670009 | 7.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 912 | Central Area | 47.610920 | -122.313490 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 120.0 | 2 | flexible | 0 | 0 | 4577542 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 913 | Central Area | 47.608204 | -122.309995 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | Kitchen,"Pets live on this property",Heating,"... | 160.0 | 3 | strict | 0 | 0 | 6764646 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 914 | Central Area | 47.614978 | -122.309236 | Apartment | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Minor | Private room | 4 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 125.0 | 2 | moderate | 0 | 0 | 4256705 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 915 | Central Area | 47.603730 | -122.313147 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 1 | flexible | 0 | 0 | 8812578 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 916 | Central Area | 47.610377 | -122.311566 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 3 | strict | 0 | 0 | 341454 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 917 | Central Area | 47.612810 | -122.309370 | Condominium | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 100.0 | 1 | flexible | 0 | 0 | 8195629 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 918 | Central Area | 47.610069 | -122.307730 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Buzze... | 90.0 | 5 | strict | 0 | 0 | 2577625 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 919 | Central Area | 47.610149 | -122.309256 | House | 1.0 | Real Bed | within a few hours | 70.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 1 | 1 | 555858 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 920 | Central Area | 47.610467 | -122.311091 | House | 1.0 | Real Bed | within an hour | 67.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 92.0 | 1 | strict | 0 | 0 | 4814811 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 921 | Central Area | 47.611619 | -122.314257 | House | 2.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Minor | Private room | 3 | 1.0 | 1.0 | 90.0 | 1 | flexible | 0 | 0 | 9484823 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 922 | Central Area | 47.614168 | -122.307467 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Minor | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 79.0 | 7 | moderate | 0 | 0 | 660603 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 923 | Central Area | 47.614229 | -122.308382 | House | 1.0 | Real Bed | within a day | 75.0 | 100.0 | 1 | Minor | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 72.0 | 2 | strict | 1 | 1 | 3940265 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 924 | Central Area | 47.607251 | -122.308195 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 115.0 | 3 | strict | 0 | 0 | 7500976 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 925 | Central Area | 47.611979 | -122.303621 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 8 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 270.0 | 1 | strict | 0 | 0 | 9516608 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 926 | Central Area | 47.610564 | -122.312912 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 65.0 | 1 | moderate | 0 | 0 | 9712716 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 |
| 927 | Central Area | 47.604194 | -122.309920 | House | 6.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Minor | Entire home/apt | 10 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 300.0 | 1 | strict | 0 | 0 | 5813657 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 928 | Central Area | 47.602622 | -122.308517 | Townhouse | 3.0 | Real Bed | within a few hours | 96.0 | 100.0 | 1 | Minor | Entire home/apt | 6 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 122.0 | 1 | moderate | 0 | 1 | 8884826 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 929 | Central Area | 47.607619 | -122.308325 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Minor | Private room | 2 | 3.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 87.0 | 2 | strict | 0 | 0 | 1978743 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 930 | Central Area | 47.608481 | -122.310691 | House | 5.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Minor | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 200.0 | 5 | strict | 0 | 0 | 6091789 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 931 | Central Area | 47.609519 | -122.312704 | House | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 156.0 | 2 | moderate | 0 | 0 | 6165353 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 932 | Central Area | 47.607121 | -122.310463 | House | 1.0 | Futon | within a few hours | 80.0 | 100.0 | 1 | Minor | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Essentials | 90.0 | 3 | moderate | 1 | 1 | 1244053 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 933 | Central Area | 47.617040 | -122.302806 | Townhouse | 5.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Minor | Entire home/apt | 8 | 3.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 325.0 | 1 | strict | 0 | 0 | 8508223 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 934 | Central Area | 47.610894 | -122.304480 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Washer,Dr... | 115.0 | 2 | flexible | 0 | 0 | 6991188 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 |
| 935 | Central Area | 47.602301 | -122.307173 | Loft | 8.0 | Real Bed | within an hour | 92.0 | 100.0 | 1 | Minor | Entire home/apt | 10 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 425.0 | 1 | strict | 0 | 0 | 7344117 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 936 | Central Area | 47.606136 | -122.309033 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 119.0 | 1 | moderate | 0 | 0 | 9506766 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 |
| 937 | Central Area | 47.609596 | -122.316437 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 220.0 | 3 | strict | 0 | 0 | 6451305 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 938 | Central Area | 47.602947 | -122.313211 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 85.0 | 2 | strict | 0 | 0 | 7531405 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 939 | Central Area | 47.602165 | -122.311882 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 100.0 | 1 | strict | 0 | 0 | 9612147 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 940 | Central Area | 47.611374 | -122.307481 | House | 1.0 | Real Bed | within a few hours | 70.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 3 | flexible | 1 | 1 | 666897 | 7.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 941 | Central Area | 47.611483 | -122.309765 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Minor | Private room | 4 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 120.0 | 1 | strict | 0 | 0 | 4061051 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 942 | Central Area | 47.616220 | -122.307324 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 150.0 | 2 | moderate | 0 | 0 | 3394338 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 943 | Central Area | 47.609271 | -122.311126 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 2 | flexible | 0 | 0 | 4238106 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 944 | Central Area | 47.611551 | -122.306816 | House | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 1 | Minor | Private room | 2 | 1.0 | 1.0 | 90.0 | 1 | moderate | 0 | 0 | 7350059 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 945 | Central Area | 47.612106 | -122.304125 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 125.0 | 3 | strict | 0 | 0 | 5262750 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 946 | Central Area | 47.601872 | -122.307129 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Minor | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 90.0 | 2 | moderate | 0 | 0 | 2802844 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 947 | Central Area | 47.613607 | -122.312432 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Minor | Entire home/apt | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 5 | strict | 0 | 0 | 3123632 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 948 | Central Area | 47.612380 | -122.313742 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 4 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 2 | moderate | 0 | 0 | 3024336 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 949 | Central Area | 47.607030 | -122.306950 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Minor | Entire home/apt | 6 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 287.0 | 2 | strict | 0 | 0 | 8652185 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 950 | Central Area | 47.606634 | -122.316065 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 90.0 | 1 | moderate | 0 | 0 | 10192213 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 951 | Central Area | 47.614419 | -122.306721 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 3 | strict | 0 | 0 | 3970736 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 952 | Central Area | 47.608639 | -122.306533 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | strict | 0 | 0 | 4546924 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 953 | Central Area | 47.613401 | -122.303455 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 119.0 | 3 | flexible | 0 | 0 | 2760901 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 954 | Central Area | 47.604184 | -122.312639 | House | 3.0 | Real Bed | within a day | 75.0 | 0.0 | 0 | Minor | Entire home/apt | 5 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 4 | moderate | 0 | 0 | 3490239 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 955 | Central Area | 47.612501 | -122.309655 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Minor | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 170.0 | 3 | moderate | 0 | 0 | 3416217 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 956 | Central Area | 47.602755 | -122.311969 | House | 3.0 | Real Bed | within an hour | 86.0 | 100.0 | 0 | Minor | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 7 | strict | 0 | 0 | 5537833 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 957 | Central Area | 47.596801 | -122.288461 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Leschi | Entire home/apt | 5 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 279.0 | 3 | moderate | 0 | 0 | 8372562 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 958 | Central Area | 47.596318 | -122.296647 | Townhouse | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 2 | moderate | 0 | 0 | 8866960 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 959 | Central Area | 47.607249 | -122.294153 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Leschi | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 125.0 | 2 | moderate | 0 | 0 | 3354614 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 960 | Central Area | 47.596201 | -122.290804 | House | 3.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Leschi | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 129.0 | 2 | strict | 0 | 0 | 8953857 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 961 | Central Area | 47.595154 | -122.296666 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 90.0 | 1 | strict | 0 | 0 | 7093738 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 962 | Central Area | 47.603931 | -122.294517 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Leschi | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 3 | strict | 0 | 0 | 5277900 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 963 | Central Area | 47.607811 | -122.295767 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Leschi | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 65.0 | 2 | flexible | 0 | 0 | 1171574 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 964 | Central Area | 47.592666 | -122.297562 | House | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Leschi | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 3 | strict | 0 | 0 | 1818754 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 965 | Central Area | 47.602387 | -122.295347 | Apartment | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Leschi | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wheelchair Accessible",Kitchen,"Free Parki... | 92.0 | 2 | strict | 0 | 0 | 74328 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 966 | Central Area | 47.595262 | -122.297213 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Leschi | Entire home/apt | 7 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 257.0 | 2 | moderate | 0 | 0 | 6728017 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 967 | Central Area | 47.607448 | -122.293816 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 79.0 | 3 | flexible | 0 | 0 | 2612399 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 968 | Central Area | 47.594311 | -122.294408 | House | 3.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Leschi | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 3 | strict | 0 | 0 | 2515795 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 969 | Central Area | 47.595371 | -122.296729 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 80.0 | 1 | strict | 0 | 0 | 7093910 | 7.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 970 | Central Area | 47.604597 | -122.296725 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 85.0 | 1 | moderate | 0 | 0 | 4170863 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 971 | Central Area | 47.592599 | -122.295547 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Leschi | Private room | 3 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 1 | strict | 0 | 0 | 7941079 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 972 | Central Area | 47.592066 | -122.293565 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 105.0 | 2 | strict | 0 | 0 | 1442973 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 973 | Central Area | 47.603824 | -122.293251 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Private room | 2 | 2.0 | 1.0 | TV,"Wireless Internet",Heating,"Smoke Detector... | 59.0 | 2 | flexible | 0 | 0 | 4396961 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 974 | Central Area | 47.591726 | -122.295985 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Leschi | Private room | 3 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 59.0 | 1 | strict | 0 | 0 | 5859152 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 975 | Central Area | 47.594829 | -122.295632 | Townhouse | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 75.0 | 1 | flexible | 0 | 0 | 8555794 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 976 | Central Area | 47.593942 | -122.291088 | House | 1.0 | Pull-out Sofa | within a few hours | 100.0 | 0.0 | 0 | Leschi | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 56.0 | 2 | flexible | 0 | 0 | 2112625 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 977 | Central Area | 47.600707 | -122.293273 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Leschi | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 8814802 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 978 | Central Area | 47.605829 | -122.285210 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 2 | moderate | 0 | 0 | 8273948 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 979 | Central Area | 47.595709 | -122.297569 | House | 4.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Leschi | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 5 | moderate | 0 | 0 | 319768 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 980 | Central Area | 47.606392 | -122.290612 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | strict | 0 | 0 | 1961671 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 981 | Central Area | 47.597088 | -122.297395 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 8 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 163.0 | 2 | strict | 0 | 0 | 3691288 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 982 | Central Area | 47.598802 | -122.292476 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,"Air Conditioning","Free Parking on Premise... | 83.0 | 1 | flexible | 0 | 0 | 8703557 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 983 | Central Area | 47.594439 | -122.293870 | Townhouse | 3.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Leschi | Entire home/apt | 5 | 3.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 210.0 | 1 | flexible | 0 | 0 | 8525338 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 984 | Central Area | 47.602974 | -122.293420 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 59.0 | 1 | flexible | 0 | 0 | 8049470 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 985 | Central Area | 47.605684 | -122.295360 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 6 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 135.0 | 2 | flexible | 0 | 0 | 1455908 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 986 | Central Area | 47.594658 | -122.295411 | Townhouse | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 75.0 | 1 | flexible | 0 | 0 | 8525825 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 987 | Central Area | 47.607782 | -122.289284 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Leschi | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen | 109.0 | 2 | moderate | 0 | 0 | 3463245 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 988 | Central Area | 47.604754 | -122.294383 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Private room | 2 | 2.0 | 1.0 | TV,"Wireless Internet",Heating,"Smoke Detector... | 55.0 | 2 | flexible | 0 | 0 | 4172364 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 989 | Central Area | 47.606884 | -122.287242 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Leschi | Entire home/apt | 8 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 500.0 | 3 | strict | 0 | 0 | 3728802 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 990 | Central Area | 47.592544 | -122.293938 | Townhouse | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Leschi | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 55.0 | 1 | flexible | 0 | 0 | 6512378 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 991 | Central Area | 47.606737 | -122.290088 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 8 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 400.0 | 5 | moderate | 0 | 0 | 785830 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 992 | Central Area | 47.592208 | -122.295003 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 4 | 2.5 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 105.0 | 2 | moderate | 0 | 0 | 8616606 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 993 | Central Area | 47.601616 | -122.294380 | Apartment | 1.0 | Pull-out Sofa | within an hour | 90.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Family/Kid Friend... | 39.0 | 1 | flexible | 0 | 0 | 5078244 | 8.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 994 | Central Area | 47.597888 | -122.296963 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 50.0 | 1 | strict | 0 | 0 | 7921278 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 995 | Central Area | 47.594810 | -122.296164 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 129.0 | 2 | strict | 0 | 0 | 8016610 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 996 | Central Area | 47.604296 | -122.294359 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Private room | 1 | 2.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 44.0 | 2 | flexible | 0 | 0 | 4468524 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 997 | Central Area | 47.604379 | -122.291115 | House | 8.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 12 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 350.0 | 7 | strict | 0 | 0 | 8424532 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 998 | Central Area | 47.596971 | -122.296482 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 10 | 3.5 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 300.0 | 1 | strict | 0 | 0 | 6990882 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 999 | Central Area | 47.591768 | -122.294322 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 53.0 | 2 | flexible | 0 | 0 | 4017140 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1000 | Central Area | 47.593901 | -122.296054 | Townhouse | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Leschi | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 60.0 | 1 | flexible | 0 | 0 | 9489310 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1001 | Central Area | 47.595223 | -122.296637 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 10 | 3.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 285.0 | 1 | strict | 0 | 0 | 8104742 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1002 | Central Area | 47.602561 | -122.293655 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Leschi | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,Kitchen,"Free Parking o... | 210.0 | 2 | strict | 0 | 0 | 9407255 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1003 | Central Area | 47.597701 | -122.292000 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 159.0 | 2 | strict | 0 | 0 | 6475289 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1004 | Central Area | 47.604697 | -122.285489 | House | 3.0 | Real Bed | a few days or more | 33.0 | 100.0 | 1 | Leschi | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 2 | flexible | 0 | 0 | 1377812 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1005 | Central Area | 47.602121 | -122.290130 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 66.0 | 1 | flexible | 0 | 0 | 9512909 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1006 | Central Area | 47.594958 | -122.295165 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 80.0 | 2 | moderate | 0 | 0 | 4432489 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1007 | Central Area | 47.591770 | -122.292288 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Entire home/apt | 3 | 1.0 | 1.0 | Kitchen,Heating,Washer,Dryer,"Smoke Detector",... | 79.0 | 1 | moderate | 0 | 0 | 7471629 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1008 | Central Area | 47.593196 | -122.292492 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Leschi | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 120.0 | 1 | flexible | 0 | 0 | 8067827 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1009 | Central Area | 47.605746 | -122.292830 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Leschi | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 49.0 | 2 | flexible | 0 | 0 | 4384095 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 1010 | Central Area | 47.595236 | -122.309725 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 122.0 | 2 | moderate | 0 | 0 | 1351716 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1011 | Central Area | 47.593623 | -122.307462 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 1 | flexible | 0 | 0 | 8392661 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1012 | Central Area | 47.593797 | -122.305149 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 196.0 | 3 | strict | 0 | 0 | 281208 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1013 | Central Area | 47.599439 | -122.306346 | Townhouse | 1.0 | Real Bed | within a day | 89.0 | 100.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 115.0 | 1 | strict | 0 | 1 | 7859909 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 1014 | Central Area | 47.600049 | -122.309868 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 4 | 1.0 | 1.0 | 150.0 | 5 | flexible | 0 | 0 | 9416373 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1015 | Central Area | 47.591428 | -122.301739 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 125.0 | 2 | strict | 0 | 0 | 1404307 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1016 | Central Area | 47.594496 | -122.298789 | Townhouse | 3.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Atlantic | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 3 | strict | 0 | 0 | 7480843 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1017 | Central Area | 47.600266 | -122.299867 | House | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Atlantic | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 60.0 | 2 | flexible | 0 | 0 | 877203 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1018 | Central Area | 47.599218 | -122.312100 | Bungalow | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Private room | 2 | 1.5 | 1.0 | "Cable TV","Wireless Internet",Heating,"Smoke ... | 70.0 | 1 | moderate | 0 | 0 | 7037291 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 1019 | Central Area | 47.595618 | -122.310821 | Condominium | 2.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 2 | flexible | 0 | 0 | 7931386 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1020 | Central Area | 47.576696 | -122.296881 | Loft | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 100.0 | 2 | flexible | 0 | 0 | 8173825 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1021 | Central Area | 47.596952 | -122.301987 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Atlantic | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 69.0 | 1 | flexible | 0 | 0 | 6759104 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1022 | Central Area | 47.595159 | -122.309061 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Hot T... | 69.0 | 1 | strict | 0 | 0 | 7619060 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1023 | Central Area | 47.592136 | -122.300080 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 35.0 | 1 | moderate | 0 | 0 | 7095802 | 8.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1024 | Central Area | 47.598026 | -122.306967 | House | 2.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 1.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 140.0 | 2 | strict | 0 | 0 | 8103432 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1025 | Central Area | 47.596227 | -122.302923 | House | 1.0 | Futon | within a day | 100.0 | 100.0 | 0 | Atlantic | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 68.0 | 2 | moderate | 0 | 0 | 3998922 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1026 | Central Area | 47.600166 | -122.307816 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 1 | flexible | 0 | 0 | 8922153 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1027 | Central Area | 47.587255 | -122.300385 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 4 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 2 | flexible | 0 | 0 | 5932882 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1028 | Central Area | 47.593702 | -122.308105 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 70.0 | 1 | flexible | 0 | 0 | 6187340 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1029 | Central Area | 47.586227 | -122.298616 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 2 | flexible | 0 | 0 | 8350401 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1030 | Central Area | 47.601585 | -122.306983 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 6 | 2.5 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 275.0 | 3 | strict | 0 | 0 | 1273432 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1031 | Central Area | 47.593220 | -122.308891 | Apartment | 1.0 | Futon | within a day | 100.0 | 0.0 | 0 | Atlantic | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 60.0 | 1 | flexible | 0 | 0 | 2830174 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1032 | Central Area | 47.599848 | -122.307034 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 1.5 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 125.0 | 1 | strict | 0 | 0 | 9370866 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1033 | Central Area | 47.593644 | -122.309320 | Apartment | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 100.0 | 1 | flexible | 0 | 0 | 8339303 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1034 | Central Area | 47.599647 | -122.307397 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Gym,"Pets live on ... | 115.0 | 2 | moderate | 0 | 0 | 8107555 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1035 | Central Area | 47.591979 | -122.307176 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 1 | Atlantic | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Smoke De... | 90.0 | 1 | moderate | 0 | 0 | 3946160 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 |
| 1036 | Central Area | 47.593168 | -122.301699 | House | 3.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | moderate | 0 | 0 | 4061207 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1037 | Central Area | 47.597050 | -122.299887 | House | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Atlantic | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 250.0 | 3 | strict | 0 | 0 | 113951 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1038 | Central Area | 47.593820 | -122.305967 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 119.0 | 7 | flexible | 0 | 0 | 5102135 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1039 | Central Area | 47.599583 | -122.313154 | Cabin | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Entire home/apt | 4 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Breakfast,"Pets li... | 95.0 | 2 | strict | 0 | 0 | 5060388 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1040 | Central Area | 47.597976 | -122.300880 | House | 3.0 | Real Bed | within an hour | 89.0 | 100.0 | 0 | Atlantic | Entire home/apt | 7 | 3.5 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 218.0 | 2 | strict | 0 | 0 | 286712 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1041 | Central Area | 47.594372 | -122.309358 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 120.0 | 2 | moderate | 0 | 0 | 5463875 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1042 | Central Area | 47.591274 | -122.305761 | House | 1.0 | Pull-out Sofa | within a day | 83.0 | 100.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 64.0 | 2 | flexible | 0 | 0 | 4316910 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 1043 | Central Area | 47.596960 | -122.298165 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 80.0 | 1 | strict | 0 | 0 | 7093986 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1044 | Central Area | 47.595781 | -122.309653 | Loft | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 170.0 | 1 | moderate | 0 | 0 | 4777832 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 1045 | Central Area | 47.596391 | -122.304905 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 4 | 2.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 168.0 | 4 | strict | 0 | 0 | 7429207 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1046 | Central Area | 47.598567 | -122.307544 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 60.0 | 1 | moderate | 0 | 0 | 7664565 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1047 | Central Area | 47.593710 | -122.304190 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 85.0 | 1 | strict | 0 | 0 | 5792683 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1048 | Central Area | 47.599335 | -122.311368 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 70.0 | 2 | moderate | 0 | 0 | 1856970 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1049 | Central Area | 47.593612 | -122.309800 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 115.0 | 1 | strict | 0 | 0 | 4084712 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1050 | Central Area | 47.591966 | -122.308393 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 2 | flexible | 0 | 0 | 6411986 | 8.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1051 | Central Area | 47.592357 | -122.303345 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Private room | 2 | 1.5 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 125.0 | 1 | moderate | 0 | 0 | 9258687 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 |
| 1052 | Central Area | 47.600441 | -122.309223 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 1 | moderate | 0 | 0 | 9426058 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1053 | Central Area | 47.601412 | -122.312889 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 90.0 | 1 | strict | 0 | 0 | 9736801 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1054 | Central Area | 47.599827 | -122.309483 | Townhouse | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 149.0 | 3 | strict | 0 | 0 | 4297068 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1055 | Central Area | 47.587482 | -122.300622 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Entire home/apt | 8 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 250.0 | 2 | strict | 0 | 0 | 8221520 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1056 | Central Area | 47.594125 | -122.308662 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Atlantic | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Hot T... | 69.0 | 1 | strict | 0 | 0 | 2387605 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1057 | Central Area | 47.594290 | -122.309190 | Condominium | 1.0 | Real Bed | within a few hours | 75.0 | 0.0 | 0 | Atlantic | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 65.0 | 1 | flexible | 0 | 0 | 8389809 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1058 | Central Area | 47.590832 | -122.299813 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Atlantic | Private room | 2 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 40.0 | 1 | moderate | 0 | 0 | 7048843 | 8.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1059 | Central Area | 47.600510 | -122.301994 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Atlantic | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 2 | flexible | 0 | 0 | 879181 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1060 | Central Area | 47.601386 | -122.307679 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Atlantic | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 149.0 | 3 | moderate | 0 | 0 | 6423488 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1061 | Central Area | 47.600113 | -122.303754 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Atlantic | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 1 | moderate | 0 | 0 | 7241905 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1062 | Central Area | 47.581723 | -122.298981 | House | 3.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Atlantic | Entire home/apt | 6 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 79.0 | 1 | strict | 1 | 1 | 1246809 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1063 | Downtown | 47.610705 | -122.340975 | Apartment | 1.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 129.0 | 2 | strict | 0 | 0 | 10273158 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1064 | Downtown | 47.609274 | -122.340877 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 2 | moderate | 0 | 0 | 5615620 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1065 | Downtown | 47.608546 | -122.339192 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 76.0 | 2 | strict | 0 | 0 | 936484 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1066 | Downtown | 47.609798 | -122.340368 | Condominium | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Pike-Market | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,"... | 95.0 | 1 | strict | 0 | 0 | 5415077 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1067 | Downtown | 47.608462 | -122.339506 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | strict | 0 | 0 | 938785 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1068 | Downtown | 47.608163 | -122.338993 | Apartment | 3.0 | Pull-out Sofa | within an hour | 99.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 137.0 | 2 | strict | 0 | 0 | 934216 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1069 | Downtown | 47.609080 | -122.340106 | Dorm | 8.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Shared room | 8 | 0.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 38.0 | 1 | moderate | 0 | 0 | 6119821 | 9.142857 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1070 | Downtown | 47.612174 | -122.343393 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Pike-Market | Entire home/apt | 4 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 557.0 | 6 | strict | 0 | 0 | 3385421 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1071 | Downtown | 47.608663 | -122.341301 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pike-Market | Entire home/apt | 6 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 160.0 | 1 | strict | 0 | 0 | 5981343 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1072 | Downtown | 47.610519 | -122.341810 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 179.0 | 2 | moderate | 0 | 0 | 9706229 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1073 | Downtown | 47.607724 | -122.340476 | Dorm | 8.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Shared room | 8 | 8.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 41.0 | 1 | flexible | 0 | 0 | 8212989 | 9.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1074 | Downtown | 47.608822 | -122.341018 | Condominium | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Wheel... | 97.0 | 1 | strict | 0 | 1 | 9444769 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1075 | Downtown | 47.607771 | -122.339640 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 99.0 | 1 | strict | 0 | 0 | 5422159 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1076 | Downtown | 47.610560 | -122.341296 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 149.0 | 2 | moderate | 0 | 0 | 9532861 | 7.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 1077 | Downtown | 47.609693 | -122.341997 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pike-Market | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 199.0 | 2 | strict | 1 | 1 | 3380159 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1078 | Downtown | 47.608461 | -122.341888 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 157.0 | 1 | moderate | 0 | 0 | 9294683 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1079 | Downtown | 47.610995 | -122.343522 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 170.0 | 2 | moderate | 0 | 0 | 8253456 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1080 | Downtown | 47.607238 | -122.341314 | Apartment | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 85.0 | 2 | strict | 0 | 1 | 944237 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1081 | Downtown | 47.608001 | -122.339846 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pike-Market | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 299.0 | 2 | strict | 0 | 0 | 4165387 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1082 | Downtown | 47.608803 | -122.339300 | Apartment | 1.0 | Real Bed | within a few hours | 95.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 95.0 | 2 | moderate | 0 | 0 | 9866984 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1083 | Downtown | 47.607753 | -122.341348 | Apartment | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 1 | strict | 0 | 1 | 7179337 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1084 | Downtown | 47.610412 | -122.341490 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 165.0 | 2 | flexible | 0 | 0 | 9768655 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1085 | Downtown | 47.608559 | -122.340270 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 114.0 | 1 | moderate | 0 | 0 | 8015531 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1086 | Downtown | 47.608170 | -122.338376 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 311.0 | 7 | strict | 1 | 1 | 991961 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1087 | Downtown | 47.610780 | -122.341165 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Pike-Market | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 160.0 | 2 | strict | 0 | 0 | 4597584 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1088 | Downtown | 47.607681 | -122.340267 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 2 | moderate | 0 | 0 | 8035212 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1089 | Downtown | 47.608738 | -122.341181 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pike-Market | Entire home/apt | 3 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Elevat... | 150.0 | 2 | moderate | 0 | 0 | 8053396 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1090 | Downtown | 47.608931 | -122.340282 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Pike-Market | Entire home/apt | 4 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 357.0 | 7 | strict | 0 | 0 | 9634448 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1091 | Cascade | 47.644821 | -122.327488 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 135.0 | 2 | strict | 0 | 0 | 2516391 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1092 | Cascade | 47.640917 | -122.323322 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 3 | strict | 0 | 0 | 7581631 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1093 | Cascade | 47.642081 | -122.324605 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 2 | moderate | 0 | 0 | 7067650 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1094 | Cascade | 47.643390 | -122.325822 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 138.0 | 2 | strict | 0 | 0 | 706385 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1095 | Cascade | 47.640525 | -122.328521 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 129.0 | 4 | moderate | 0 | 0 | 6005443 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1096 | Cascade | 47.639177 | -122.326225 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 120.0 | 2 | moderate | 0 | 0 | 6883913 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 1097 | Cascade | 47.639478 | -122.325931 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 0 | 0 | 6523393 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1098 | Cascade | 47.640788 | -122.323208 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 140.0 | 10 | strict | 0 | 0 | 7922676 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1099 | Cascade | 47.637575 | -122.323359 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 2 | moderate | 0 | 0 | 6766513 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1100 | Cascade | 47.640079 | -122.325543 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 91.0 | 2 | moderate | 0 | 0 | 682135 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1101 | Cascade | 47.640505 | -122.328202 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 135.0 | 1 | strict | 0 | 0 | 4678866 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1102 | Cascade | 47.638973 | -122.324888 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 3 | strict | 0 | 0 | 708774 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1103 | Cascade | 47.638290 | -122.327895 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 1 | Eastlake | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 140.0 | 2 | moderate | 0 | 0 | 3158210 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1104 | Cascade | 47.639635 | -122.324452 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 125.0 | 3 | strict | 0 | 0 | 1494828 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1105 | Cascade | 47.651956 | -122.321398 | Condominium | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 150.0 | 2 | flexible | 0 | 0 | 7291403 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1106 | Cascade | 47.640117 | -122.326567 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 129.0 | 1 | flexible | 0 | 1 | 7075357 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1107 | Cascade | 47.641981 | -122.322990 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Eastlake | Shared room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 50.0 | 1 | flexible | 0 | 0 | 8000037 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1108 | Cascade | 47.647933 | -122.323343 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Heating... | 85.0 | 1 | strict | 0 | 0 | 1652097 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 1109 | Cascade | 47.641561 | -122.327073 | Apartment | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 1 | Eastlake | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 82.0 | 3 | moderate | 0 | 0 | 4660460 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1110 | Cascade | 47.636023 | -122.324465 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Pool,Kitchen,"Pets live on... | 103.0 | 1 | flexible | 0 | 0 | 1944596 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1111 | Cascade | 47.638574 | -122.324804 | House | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 59.0 | 1 | flexible | 0 | 0 | 5593504 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1112 | Cascade | 47.641790 | -122.324953 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | flexible | 0 | 0 | 7999692 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1113 | Cascade | 47.644546 | -122.325523 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 115.0 | 2 | strict | 0 | 0 | 619366 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1114 | Cascade | 47.640692 | -122.323503 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 7999972 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1115 | Cascade | 47.647150 | -122.322739 | Cabin | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Eastlake | Entire home/apt | 8 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 300.0 | 2 | moderate | 0 | 0 | 3379116 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1116 | Cascade | 47.638442 | -122.325126 | House | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 68.0 | 1 | flexible | 0 | 0 | 10272763 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1117 | Cascade | 47.640812 | -122.326062 | Apartment | 1.0 | Airbed | within a few hours | 100.0 | 100.0 | 0 | Eastlake | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 52.0 | 1 | flexible | 0 | 0 | 10077121 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1118 | Cascade | 47.642115 | -122.327223 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 91.0 | 1 | strict | 0 | 0 | 7536219 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1119 | Cascade | 47.641251 | -122.324088 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 59.0 | 1 | moderate | 0 | 0 | 4688603 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1120 | Cascade | 47.646488 | -122.325891 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 129.0 | 3 | strict | 0 | 0 | 7936877 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1121 | Cascade | 47.645387 | -122.323782 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 0.0 | 0 | Eastlake | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 125.0 | 1 | flexible | 0 | 0 | 3627658 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1122 | Cascade | 47.637545 | -122.327392 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 2 | moderate | 0 | 0 | 6363779 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1123 | Cascade | 47.636120 | -122.324336 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 58.0 | 1 | moderate | 0 | 0 | 2693137 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1124 | Cascade | 47.640324 | -122.323168 | House | 3.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Eastlake | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 600.0 | 2 | flexible | 0 | 0 | 7697340 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1125 | Cascade | 47.648628 | -122.324221 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 89.0 | 2 | flexible | 0 | 0 | 5707514 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1126 | Cascade | 47.638749 | -122.327047 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Eastlake | Entire home/apt | 4 | 1.0 | 0.0 | Kitchen,Heating,"Smoke Detector","Carbon Monox... | 100.0 | 1 | flexible | 0 | 0 | 7844444 | 7.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1127 | Cascade | 47.636730 | -122.323799 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 125.0 | 2 | strict | 0 | 0 | 7481498 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1128 | Cascade | 47.640974 | -122.328573 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 82.0 | 2 | strict | 0 | 0 | 535300 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 1129 | Cascade | 47.636674 | -122.323155 | Apartment | 2.0 | Couch | within a few hours | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV",Internet,"Wireless Internet","Air C... | 225.0 | 7 | strict | 0 | 0 | 68508 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1130 | Cascade | 47.636181 | -122.326638 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 1 | flexible | 0 | 0 | 8294379 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1131 | Cascade | 47.635509 | -122.325412 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 90.0 | 1 | flexible | 0 | 0 | 9137487 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1132 | Cascade | 47.644255 | -122.326172 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 134.0 | 1 | strict | 0 | 0 | 4481979 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1133 | Cascade | 47.641665 | -122.324645 | Apartment | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | Eastlake | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 42.0 | 1 | moderate | 0 | 0 | 5353512 | 7.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1134 | Cascade | 47.646880 | -122.324174 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Eastlake | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 125.0 | 2 | strict | 1 | 0 | 244499 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1135 | Cascade | 47.638454 | -122.323382 | House | 2.0 | Real Bed | within an hour | 96.0 | 100.0 | 0 | Eastlake | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 115.0 | 1 | moderate | 0 | 0 | 3316219 | 8.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1136 | Cascade | 47.619072 | -122.347799 | Apartment | 1.0 | Real Bed | within a day | 89.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 125.0 | 1 | strict | 0 | 0 | 6613601 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1137 | Cascade | 47.623861 | -122.342263 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 55.0 | 2 | moderate | 0 | 0 | 7833113 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1138 | Cascade | 47.620862 | -122.338966 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 550.0 | 3 | flexible | 0 | 0 | 7439802 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1139 | Cascade | 47.634493 | -122.325847 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 90.0 | 2 | flexible | 0 | 0 | 10135378 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1140 | Cascade | 47.619206 | -122.332030 | Apartment | 1.0 | Real Bed | within an hour | 88.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 100.0 | 2 | flexible | 0 | 0 | 9330174 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1141 | Cascade | 47.623989 | -122.332166 | Loft | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 95.0 | 1 | flexible | 0 | 0 | 9597415 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1142 | Cascade | 47.623302 | -122.331969 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 110.0 | 4 | flexible | 0 | 0 | 8831088 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1143 | Cascade | 47.634435 | -122.324157 | Apartment | 1.0 | Real Bed | within a day | 57.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Pets live on this... | 80.0 | 2 | flexible | 0 | 0 | 7401671 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1144 | Cascade | 47.626675 | -122.342906 | Apartment | 1.0 | Real Bed | a few days or more | 30.0 | 100.0 | 0 | South Lake Union | Private room | 4 | 2.0 | 1.0 | TV,"Wireless Internet","Air Conditioning","Whe... | 100.0 | 30 | moderate | 0 | 0 | 5330475 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1145 | Cascade | 47.619707 | -122.336997 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 90.0 | 7 | flexible | 0 | 0 | 8067001 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1146 | Cascade | 47.619917 | -122.346108 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | South Lake Union | Shared room | 1 | 2.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Ele... | 100.0 | 1 | moderate | 0 | 0 | 8829089 | 0.000000 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1147 | Cascade | 47.620362 | -122.344629 | Condominium | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 88.0 | 1 | flexible | 0 | 0 | 8814555 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1148 | Cascade | 47.628667 | -122.328546 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 59.0 | 2 | strict | 0 | 0 | 6852288 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1149 | Cascade | 47.620135 | -122.337019 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | South Lake Union | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 183.0 | 2 | strict | 1 | 1 | 6913706 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1150 | Cascade | 47.619984 | -122.333890 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 135.0 | 1 | moderate | 0 | 0 | 2387265 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1151 | Cascade | 47.619748 | -122.339131 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 220.0 | 3 | strict | 1 | 1 | 48319 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1152 | Cascade | 47.619944 | -122.338552 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | South Lake Union | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 183.0 | 2 | strict | 1 | 1 | 9885225 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 1153 | Cascade | 47.623662 | -122.333293 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | South Lake Union | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 115.0 | 2 | flexible | 0 | 0 | 8083242 | 7.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1154 | Cascade | 47.625472 | -122.337479 | Camper/RV | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | South Lake Union | Shared room | 4 | 1.0 | 1.0 | Kitchen,"Smoking Allowed","Pets Allowed",Doorm... | 100.0 | 1 | flexible | 0 | 0 | 8704964 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1155 | Cascade | 47.619718 | -122.337205 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | South Lake Union | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 183.0 | 2 | strict | 1 | 1 | 6990477 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1156 | Cascade | 47.621510 | -122.328787 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 115.0 | 2 | strict | 0 | 0 | 117862 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1157 | Cascade | 47.621757 | -122.329696 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | South Lake Union | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 75.0 | 1 | moderate | 0 | 0 | 7777219 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1158 | Cascade | 47.620890 | -122.330359 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | South Lake Union | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 110.0 | 3 | flexible | 0 | 0 | 7203765 | 8.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1159 | Cascade | 47.620279 | -122.339215 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | South Lake Union | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 183.0 | 2 | strict | 1 | 1 | 7840228 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1160 | Cascade | 47.620968 | -122.337774 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 220.0 | 1 | moderate | 0 | 0 | 7438635 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1161 | Cascade | 47.619302 | -122.344361 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Lake Union | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 1 | strict | 0 | 0 | 9389755 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1162 | Cascade | 47.621470 | -122.331074 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | South Lake Union | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 75.0 | 1 | flexible | 0 | 0 | 9151865 | 8.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1163 | Magnolia | 47.659470 | -122.401873 | House | 3.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 1 | moderate | 0 | 0 | 7204672 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1164 | Magnolia | 47.654211 | -122.408389 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 7 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 229.0 | 2 | strict | 0 | 0 | 5579427 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1165 | Magnolia | 47.651031 | -122.385004 | Townhouse | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lawton Park | Entire home/apt | 10 | 3.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 333.0 | 1 | moderate | 0 | 0 | 6734621 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1166 | Magnolia | 47.659121 | -122.402265 | Apartment | 1.0 | Real Bed | within an hour | 91.0 | 100.0 | 0 | Lawton Park | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Gym,Breakfast,"Ele... | 41.0 | 2 | flexible | 0 | 0 | 2263643 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1167 | Magnolia | 47.664035 | -122.403750 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lawton Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 70.0 | 1 | flexible | 0 | 0 | 4608208 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 1168 | Magnolia | 47.651571 | -122.383719 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Lawton Park | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Hot Tub"... | 55.0 | 1 | moderate | 0 | 0 | 9999955 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1169 | Magnolia | 47.659830 | -122.402738 | Apartment | 2.0 | Real Bed | a few days or more | 43.0 | 100.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 1 | moderate | 0 | 0 | 3528627 | 8.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1170 | Magnolia | 47.653980 | -122.395547 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Lawton Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 97.0 | 2 | strict | 0 | 0 | 8048333 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1171 | Magnolia | 47.650618 | -122.403120 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lawton Park | Entire home/apt | 12 | 3.5 | 5.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 350.0 | 3 | strict | 0 | 0 | 8050642 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1172 | Magnolia | 47.648992 | -122.397112 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 0 | 0 | 7329805 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1173 | Magnolia | 47.649500 | -122.383964 | Townhouse | 3.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 5 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 225.0 | 2 | moderate | 0 | 0 | 6848455 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1174 | Magnolia | 47.650589 | -122.391016 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Lawton Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 115.0 | 1 | flexible | 0 | 0 | 9695233 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1175 | Magnolia | 47.649875 | -122.383561 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 40.0 | 1 | moderate | 0 | 0 | 5164581 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1176 | Magnolia | 47.649500 | -122.382763 | Townhouse | 3.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 8 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | moderate | 0 | 0 | 2208757 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1177 | Magnolia | 47.661197 | -122.401446 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 46.0 | 1 | moderate | 0 | 1 | 226536 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1178 | Magnolia | 47.652216 | -122.385481 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 64.0 | 2 | moderate | 0 | 1 | 176678 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1179 | Magnolia | 47.652438 | -122.389698 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lawton Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 2 | moderate | 0 | 0 | 7050534 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1180 | Magnolia | 47.657950 | -122.398155 | House | 4.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Lawton Park | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 250.0 | 3 | flexible | 0 | 0 | 8248970 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1181 | Magnolia | 47.654403 | -122.393591 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 147.0 | 2 | moderate | 0 | 0 | 4824699 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1182 | Magnolia | 47.658426 | -122.402298 | Bed & Breakfast | 1.0 | Couch | within an hour | 91.0 | 100.0 | 0 | Lawton Park | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 30.0 | 2 | flexible | 0 | 0 | 3876097 | 9.428571 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1183 | Magnolia | 47.660564 | -122.401864 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Lawton Park | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 1 | flexible | 0 | 0 | 1260259 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1184 | Magnolia | 47.649624 | -122.385531 | Townhouse | 1.0 | Real Bed | within a day | 67.0 | 0.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 78.0 | 2 | flexible | 0 | 0 | 8443952 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1185 | Magnolia | 47.652496 | -122.396354 | Bed & Breakfast | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lawton Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 120.0 | 1 | moderate | 0 | 0 | 10068879 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 |
| 1186 | Magnolia | 47.653783 | -122.388130 | Condominium | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 280.0 | 2 | flexible | 0 | 0 | 8173487 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1187 | Magnolia | 47.655131 | -122.407818 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 75.0 | 2 | strict | 0 | 0 | 685600 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1188 | Magnolia | 47.654128 | -122.389694 | Apartment | 1.0 | Real Bed | within a few hours | 67.0 | 0.0 | 0 | Lawton Park | Entire home/apt | 4 | 1.0 | 1.0 | 178.0 | 1 | flexible | 0 | 0 | 8483477 | 8.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1189 | Magnolia | 47.648684 | -122.383789 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lawton Park | Entire home/apt | 8 | 1.0 | 5.0 | 480.0 | 1 | flexible | 0 | 0 | 10136155 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1190 | Magnolia | 47.654382 | -122.409628 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lawton Park | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 129.0 | 2 | strict | 0 | 0 | 6959336 | 7.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1191 | Magnolia | 47.650811 | -122.384694 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Lawton Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 50.0 | 1 | moderate | 0 | 0 | 5195064 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1192 | Magnolia | 47.649443 | -122.383312 | Townhouse | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Lawton Park | Private room | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 50.0 | 1 | moderate | 0 | 0 | 9961538 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1193 | Magnolia | 47.653630 | -122.407604 | House | 3.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Briarcliff | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 1 | moderate | 0 | 0 | 8301680 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1194 | Magnolia | 47.653122 | -122.409817 | House | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | Briarcliff | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 88.0 | 1 | strict | 1 | 1 | 492287 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 1195 | Magnolia | 47.635436 | -122.402472 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Briarcliff | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 100.0 | 2 | flexible | 0 | 0 | 8029177 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1196 | Magnolia | 47.646090 | -122.415848 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Briarcliff | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 2 | strict | 0 | 0 | 7343707 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1197 | Magnolia | 47.641457 | -122.403883 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Briarcliff | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 200.0 | 2 | strict | 0 | 0 | 8882345 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1198 | Magnolia | 47.640127 | -122.402739 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Briarcliff | Entire home/apt | 6 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | strict | 0 | 0 | 7676574 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1199 | Magnolia | 47.647891 | -122.408765 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Briarcliff | Entire home/apt | 9 | 1.5 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 95.0 | 4 | strict | 0 | 0 | 3354761 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1200 | Magnolia | 47.647090 | -122.408555 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Briarcliff | Entire home/apt | 15 | 4.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 172.0 | 1 | strict | 0 | 0 | 3561237 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1201 | Magnolia | 47.650204 | -122.413882 | House | 1.0 | Futon | within a day | 100.0 | 0.0 | 0 | Briarcliff | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | flexible | 0 | 0 | 1831338 | 8.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1202 | Magnolia | 47.648924 | -122.412715 | House | 1.0 | Futon | within a day | 100.0 | 0.0 | 0 | Briarcliff | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 99.0 | 1 | flexible | 0 | 0 | 1840671 | 9.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1203 | Magnolia | 47.647242 | -122.404505 | House | 3.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | Briarcliff | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 1 | moderate | 0 | 0 | 5559643 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1204 | Magnolia | 47.651686 | -122.404573 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Briarcliff | Entire home/apt | 12 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 350.0 | 3 | strict | 0 | 0 | 8327083 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1205 | Magnolia | 47.652669 | -122.409296 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Briarcliff | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | strict | 0 | 0 | 8087037 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1206 | Magnolia | 47.631495 | -122.395437 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Briarcliff | Entire home/apt | 10 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 375.0 | 3 | strict | 1 | 1 | 1696015 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1207 | Downtown | 47.615702 | -122.332627 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 144.0 | 2 | strict | 0 | 0 | 6855839 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1208 | Downtown | 47.615379 | -122.335259 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 999.0 | 1 | moderate | 0 | 0 | 3345341 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1209 | Downtown | 47.615728 | -122.342253 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 138.0 | 2 | strict | 0 | 0 | 4410493 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1210 | Downtown | 47.613616 | -122.347058 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 145.0 | 2 | strict | 1 | 1 | 19619 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1211 | Downtown | 47.612973 | -122.344426 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 1 | strict | 0 | 0 | 7597244 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1212 | Downtown | 47.611090 | -122.348157 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | Belltown | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 45.0 | 1 | flexible | 0 | 0 | 5736082 | 9.142857 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1213 | Downtown | 47.613814 | -122.342529 | Apartment | 1.0 | Futon | within a day | 70.0 | 100.0 | 0 | Belltown | Shared room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 35.0 | 1 | strict | 0 | 0 | 3697351 | 8.857143 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1214 | Downtown | 47.614917 | -122.344980 | Loft | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 225.0 | 3 | strict | 0 | 0 | 6958436 | 7.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1215 | Downtown | 47.616446 | -122.352218 | Apartment | 1.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Belltown | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 50.0 | 2 | flexible | 0 | 0 | 9652574 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1216 | Downtown | 47.614427 | -122.349097 | Apartment | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 120.0 | 2 | strict | 1 | 1 | 7109376 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1217 | Downtown | 47.612978 | -122.350977 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 100.0 | 7 | flexible | 0 | 0 | 3534364 | 8.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1218 | Downtown | 47.613386 | -122.340066 | Apartment | 2.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 120.0 | 2 | strict | 0 | 0 | 6671901 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1219 | Downtown | 47.614294 | -122.336390 | Apartment | 1.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 249.0 | 5 | strict | 0 | 0 | 6370313 | 7.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1220 | Downtown | 47.616387 | -122.353822 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | moderate | 0 | 0 | 9863484 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1221 | Downtown | 47.618053 | -122.337554 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 7249631 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1222 | Downtown | 47.614205 | -122.343989 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 130.0 | 1 | strict | 0 | 0 | 9183838 | 3.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1223 | Downtown | 47.615229 | -122.337120 | Apartment | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | "Cable TV","Wireless Internet","Air Conditioni... | 130.0 | 3 | strict | 1 | 1 | 6222245 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1224 | Downtown | 47.614836 | -122.346834 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 105.0 | 3 | flexible | 0 | 0 | 10292753 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1225 | Downtown | 47.614635 | -122.345400 | Loft | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 1 | strict | 0 | 0 | 7760836 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1226 | Downtown | 47.616321 | -122.349325 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 175.0 | 2 | flexible | 0 | 0 | 7324993 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1227 | Downtown | 47.615749 | -122.343653 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 100.0 | 2 | moderate | 0 | 0 | 5760902 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1228 | Downtown | 47.614943 | -122.340678 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 129.0 | 2 | strict | 0 | 0 | 7035498 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1229 | Downtown | 47.614515 | -122.340329 | Apartment | 3.0 | Real Bed | within an hour | 97.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 90.0 | 1 | strict | 0 | 0 | 8956631 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1230 | Downtown | 47.615344 | -122.332741 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 6 | 2.5 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 350.0 | 20 | strict | 1 | 1 | 6766708 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1231 | Downtown | 47.618479 | -122.355491 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 1 | flexible | 0 | 0 | 6992696 | 7.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1232 | Downtown | 47.614119 | -122.341297 | Apartment | 1.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,Heating,Shampoo | 75.0 | 2 | strict | 0 | 0 | 4264043 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1233 | Downtown | 47.613971 | -122.348218 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 110.0 | 3 | strict | 0 | 0 | 6186081 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1234 | Downtown | 47.612425 | -122.343783 | Apartment | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 80.0 | 1 | strict | 1 | 1 | 1472532 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1235 | Downtown | 47.614307 | -122.347258 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Air Conditioning","Whe... | 150.0 | 2 | strict | 0 | 0 | 5900224 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1236 | Downtown | 47.613696 | -122.342055 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 0 | 0 | 9374358 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1237 | Downtown | 47.612905 | -122.346571 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 139.0 | 2 | strict | 1 | 1 | 5874421 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1238 | Downtown | 47.617291 | -122.349600 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 139.0 | 2 | strict | 1 | 1 | 8829474 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1239 | Downtown | 47.614296 | -122.347383 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 275.0 | 2 | strict | 1 | 1 | 6228474 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1240 | Downtown | 47.616016 | -122.329518 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 135.0 | 2 | strict | 0 | 0 | 4637670 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1241 | Downtown | 47.613840 | -122.349435 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 128.0 | 1 | strict | 0 | 0 | 3995007 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1242 | Downtown | 47.615611 | -122.345927 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 107.0 | 2 | strict | 1 | 1 | 19611 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1243 | Downtown | 47.616896 | -122.346383 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 150.0 | 2 | flexible | 0 | 0 | 10076279 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1244 | Downtown | 47.614864 | -122.343985 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 100.0 | 2 | strict | 1 | 1 | 1200829 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1245 | Downtown | 47.617249 | -122.347246 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 3 | flexible | 0 | 0 | 3673759 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1246 | Downtown | 47.615512 | -122.337286 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 120.0 | 5 | strict | 0 | 1 | 206781 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1247 | Downtown | 47.611576 | -122.346612 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 125.0 | 1 | strict | 1 | 1 | 988176 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1248 | Downtown | 47.617737 | -122.355520 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 120.0 | 2 | flexible | 0 | 0 | 3686556 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1249 | Downtown | 47.615409 | -122.348619 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 3 | strict | 0 | 0 | 2881446 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1250 | Downtown | 47.616630 | -122.350002 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 129.0 | 3 | moderate | 0 | 0 | 9318853 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1251 | Downtown | 47.612697 | -122.341526 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 140.0 | 2 | moderate | 0 | 0 | 6328150 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1252 | Downtown | 47.614065 | -122.349225 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 1 | moderate | 0 | 0 | 2154617 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1253 | Downtown | 47.617936 | -122.338395 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 149.0 | 2 | strict | 1 | 1 | 6658052 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1254 | Downtown | 47.615183 | -122.346932 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 229.0 | 7 | strict | 0 | 0 | 6187841 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1255 | Downtown | 47.615135 | -122.350670 | Loft | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 180.0 | 2 | moderate | 0 | 0 | 9371895 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 1256 | Downtown | 47.617584 | -122.353303 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 93.0 | 2 | strict | 1 | 0 | 4318031 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1257 | Downtown | 47.613705 | -122.350448 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 110.0 | 3 | moderate | 0 | 0 | 6364549 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1258 | Downtown | 47.614624 | -122.348397 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Washer... | 126.0 | 1 | strict | 1 | 1 | 8326940 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1259 | Downtown | 47.615978 | -122.349291 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 139.0 | 1 | strict | 1 | 1 | 7826593 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 |
| 1260 | Downtown | 47.614813 | -122.342793 | Apartment | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 157.0 | 3 | strict | 1 | 1 | 8168476 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1261 | Downtown | 47.614849 | -122.341172 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 90.0 | 1 | moderate | 0 | 0 | 6482984 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1262 | Downtown | 47.614094 | -122.344424 | Apartment | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 90.0 | 1 | strict | 1 | 1 | 6316917 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1263 | Downtown | 47.614290 | -122.348947 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 125.0 | 1 | strict | 1 | 1 | 7922581 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1264 | Downtown | 47.614962 | -122.332139 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 95.0 | 1 | strict | 0 | 0 | 4110396 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1265 | Downtown | 47.614700 | -122.339953 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 197.0 | 2 | strict | 0 | 0 | 5446176 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1266 | Downtown | 47.614240 | -122.348907 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Pool,Kitchen... | 155.0 | 2 | strict | 0 | 0 | 4669377 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1267 | Downtown | 47.615372 | -122.349104 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | "Cable TV","Wireless Internet","Air Conditioni... | 195.0 | 2 | strict | 1 | 1 | 4151430 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1268 | Downtown | 47.615959 | -122.340617 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 5446513 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1269 | Downtown | 47.615454 | -122.333556 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 2 | strict | 0 | 0 | 3793185 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1270 | Downtown | 47.614130 | -122.342136 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 156.0 | 2 | strict | 0 | 0 | 937370 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1271 | Downtown | 47.614016 | -122.349222 | Apartment | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 320.0 | 1 | strict | 0 | 0 | 1833250 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1272 | Downtown | 47.615969 | -122.345089 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 7 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 1 | strict | 0 | 0 | 902243 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1273 | Downtown | 47.613733 | -122.343739 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 200.0 | 5 | flexible | 0 | 0 | 4053644 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1274 | Downtown | 47.613500 | -122.338027 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 165.0 | 2 | strict | 0 | 0 | 1084046 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1275 | Downtown | 47.617165 | -122.349717 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Pets Allowed",... | 148.0 | 2 | flexible | 0 | 0 | 8016481 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1276 | Downtown | 47.617580 | -122.345989 | Apartment | 4.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 7 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 127.0 | 2 | strict | 0 | 0 | 8811781 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1277 | Downtown | 47.616511 | -122.348114 | Apartment | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 8 | 3.0 | 3.0 | "Cable TV","Wireless Internet","Air Conditioni... | 405.0 | 3 | strict | 1 | 1 | 4243163 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1278 | Downtown | 47.616211 | -122.350335 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 219.0 | 2 | strict | 1 | 1 | 4569115 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1279 | Downtown | 47.615165 | -122.346572 | Apartment | 4.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Belltown | Entire home/apt | 10 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 899.0 | 3 | strict | 0 | 0 | 4464824 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1280 | Downtown | 47.617572 | -122.349439 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 150.0 | 1 | strict | 1 | 1 | 9258513 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1281 | Downtown | 47.616776 | -122.348263 | Apartment | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | "Cable TV","Wireless Internet","Air Conditioni... | 239.0 | 3 | strict | 1 | 1 | 4190771 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1282 | Downtown | 47.613772 | -122.347586 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 1 | 1 | 3543084 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1283 | Downtown | 47.614193 | -122.348862 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 140.0 | 2 | strict | 0 | 0 | 6263270 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1284 | Downtown | 47.612499 | -122.348258 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 117.0 | 2 | strict | 0 | 0 | 7807169 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1285 | Downtown | 47.614664 | -122.346592 | Condominium | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 2 | strict | 0 | 1 | 844939 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1286 | Downtown | 47.613775 | -122.350413 | House | 1.0 | Real Bed | within a day | 56.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 170.0 | 1 | flexible | 0 | 0 | 8890682 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1287 | Downtown | 47.615049 | -122.342932 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 100.0 | 1 | flexible | 0 | 0 | 3998984 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1288 | Downtown | 47.614982 | -122.348870 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | 300.0 | 2 | strict | 1 | 1 | 6315435 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1289 | Downtown | 47.615219 | -122.349076 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 2 | strict | 1 | 1 | 6704004 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1290 | Downtown | 47.615491 | -122.347121 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 197.0 | 2 | strict | 1 | 1 | 1797207 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1291 | Downtown | 47.615775 | -122.348719 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 2 | strict | 1 | 1 | 271509 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1292 | Downtown | 47.616602 | -122.337562 | Apartment | 1.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 130.0 | 1 | flexible | 0 | 0 | 10156116 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1293 | Downtown | 47.615713 | -122.342423 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 131.0 | 2 | strict | 0 | 0 | 4410789 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1294 | Downtown | 47.617959 | -122.347833 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 110.0 | 2 | moderate | 0 | 0 | 9577993 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1295 | Downtown | 47.614586 | -122.351533 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | flexible | 0 | 0 | 9352620 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1296 | Downtown | 47.616158 | -122.339391 | Apartment | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | flexible | 0 | 0 | 9532957 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1297 | Downtown | 47.616705 | -122.353969 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 2 | moderate | 0 | 0 | 8354452 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1298 | Downtown | 47.615878 | -122.333256 | Condominium | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 8 | 2.5 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 700.0 | 3 | strict | 1 | 1 | 9497431 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1299 | Downtown | 47.615339 | -122.347905 | Apartment | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 7 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | strict | 0 | 0 | 217142 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1300 | Downtown | 47.614866 | -122.338321 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 89.0 | 2 | strict | 0 | 0 | 1732280 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1301 | Downtown | 47.613747 | -122.336127 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 142.0 | 2 | strict | 0 | 0 | 4240933 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1302 | Downtown | 47.615828 | -122.340777 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 125.0 | 2 | strict | 0 | 0 | 443942 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1303 | Downtown | 47.613722 | -122.342757 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 245.0 | 3 | strict | 0 | 0 | 6489648 | 8.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1304 | Downtown | 47.616183 | -122.354206 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 7 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 2 | strict | 0 | 0 | 8308386 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1305 | Downtown | 47.617369 | -122.353060 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 117.0 | 2 | flexible | 0 | 0 | 8227038 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1306 | Downtown | 47.613453 | -122.347518 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 215.0 | 2 | strict | 1 | 1 | 2489339 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1307 | Downtown | 47.615650 | -122.347670 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 215.0 | 2 | strict | 1 | 1 | 8054892 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1308 | Downtown | 47.617926 | -122.347834 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 275.0 | 2 | strict | 1 | 1 | 1493197 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1309 | Downtown | 47.615936 | -122.340636 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 2 | strict | 1 | 1 | 4417792 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1310 | Downtown | 47.615169 | -122.343691 | Apartment | 3.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 195.0 | 2 | strict | 0 | 1 | 5048597 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1311 | Downtown | 47.616725 | -122.348057 | Apartment | 1.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 113.0 | 2 | strict | 0 | 0 | 6278191 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1312 | Downtown | 47.615205 | -122.335459 | Condominium | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 8 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 700.0 | 3 | strict | 1 | 1 | 8891577 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1313 | Downtown | 47.614351 | -122.348153 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.5 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 139.0 | 2 | strict | 1 | 1 | 4163306 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1314 | Downtown | 47.616274 | -122.344126 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 135.0 | 2 | strict | 1 | 1 | 59827 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1315 | Downtown | 47.615890 | -122.345309 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 105.0 | 2 | strict | 0 | 0 | 9505340 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1316 | Downtown | 47.618321 | -122.345138 | Apartment | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 100.0 | 1 | flexible | 0 | 0 | 3992155 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1317 | Downtown | 47.617553 | -122.349929 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 106.0 | 2 | flexible | 0 | 0 | 8571518 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1318 | Downtown | 47.616498 | -122.352965 | Apartment | 7.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 9 | 2.5 | 3.0 | "Cable TV","Wireless Internet","Air Conditioni... | 475.0 | 3 | strict | 1 | 1 | 3820186 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1319 | Downtown | 47.613558 | -122.337884 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 143.0 | 2 | strict | 0 | 0 | 1084084 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1320 | Downtown | 47.616023 | -122.344492 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 205.0 | 2 | strict | 1 | 1 | 257140 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1321 | Downtown | 47.617883 | -122.345522 | Apartment | 3.0 | Real Bed | within an hour | 97.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 80.0 | 1 | moderate | 0 | 0 | 8956628 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1322 | Downtown | 47.616434 | -122.341745 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 6 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 1 | moderate | 0 | 0 | 8637174 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1323 | Downtown | 47.616011 | -122.347951 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 139.0 | 2 | strict | 1 | 1 | 8815061 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1324 | Downtown | 47.614761 | -122.347023 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Pool,Kitchen... | 135.0 | 2 | strict | 0 | 0 | 4677524 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1325 | Downtown | 47.613656 | -122.347590 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 155.0 | 1 | strict | 0 | 0 | 3139847 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1326 | Downtown | 47.617536 | -122.347998 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Belltown | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Pool,Kitchen,Gy... | 90.0 | 1 | flexible | 0 | 0 | 6975036 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1327 | Downtown | 47.613925 | -122.349802 | Apartment | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 139.0 | 2 | strict | 1 | 1 | 4151093 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1328 | Downtown | 47.616248 | -122.349177 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 181.0 | 2 | strict | 1 | 1 | 4256558 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1329 | Downtown | 47.616079 | -122.350226 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 99.0 | 1 | moderate | 0 | 0 | 2110357 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1330 | Downtown | 47.615014 | -122.351704 | Loft | 1.0 | Real Bed | within an hour | 89.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 175.0 | 1 | moderate | 0 | 0 | 8147986 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1331 | Downtown | 47.613602 | -122.347407 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 127.0 | 2 | strict | 1 | 1 | 2905375 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1332 | Downtown | 47.615616 | -122.339089 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Pool,Kitchen,"F... | 150.0 | 3 | strict | 1 | 1 | 4257097 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1333 | Downtown | 47.613686 | -122.336668 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 143.0 | 2 | strict | 0 | 0 | 931154 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1334 | Downtown | 47.614014 | -122.337793 | Apartment | 2.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 399.0 | 3 | strict | 0 | 0 | 6370655 | 8.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1335 | Downtown | 47.615892 | -122.346402 | Apartment | 3.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | "Cable TV","Wireless Internet","Air Conditioni... | 193.0 | 2 | strict | 1 | 1 | 4363919 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1336 | Downtown | 47.616030 | -122.350077 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 160.0 | 1 | strict | 1 | 1 | 8722230 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1337 | Downtown | 47.615042 | -122.342604 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 110.0 | 2 | flexible | 0 | 0 | 5019444 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1338 | Downtown | 47.613413 | -122.337518 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 135.0 | 2 | strict | 0 | 0 | 931758 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1339 | Downtown | 47.614973 | -122.348554 | Apartment | 1.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 165.0 | 2 | strict | 1 | 1 | 301059 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1340 | Downtown | 47.616443 | -122.349415 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 139.0 | 2 | strict | 1 | 1 | 8815638 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1341 | Downtown | 47.617333 | -122.330730 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 189.0 | 2 | strict | 0 | 0 | 7264667 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1342 | Downtown | 47.614833 | -122.350166 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 140.0 | 3 | moderate | 0 | 0 | 2068301 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1343 | Downtown | 47.616407 | -122.342533 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 129.0 | 2 | strict | 0 | 0 | 8487843 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1344 | Downtown | 47.616978 | -122.356929 | Condominium | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 150.0 | 1 | flexible | 0 | 0 | 8608233 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1345 | Downtown | 47.614623 | -122.340634 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 245.0 | 2 | strict | 0 | 0 | 5446156 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1346 | Downtown | 47.614443 | -122.347008 | Condominium | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,"... | 175.0 | 1 | strict | 0 | 0 | 2691273 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1347 | Downtown | 47.613289 | -122.349473 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 127.0 | 2 | strict | 0 | 0 | 7807090 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1348 | Downtown | 47.615301 | -122.354340 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 444.0 | 2 | strict | 0 | 0 | 8306646 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 |
| 1349 | Downtown | 47.610635 | -122.346017 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 2.0 | 1.0 | TV,"Wheelchair Accessible","Free Parking on Pr... | 105.0 | 14 | flexible | 0 | 0 | 9666446 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 |
| 1350 | Downtown | 47.616032 | -122.348226 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 127.0 | 2 | strict | 1 | 1 | 1055661 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1351 | Downtown | 47.612950 | -122.349747 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 122.0 | 2 | strict | 0 | 0 | 7806698 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1352 | Downtown | 47.615396 | -122.348664 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 2 | strict | 1 | 1 | 24212 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1353 | Downtown | 47.615686 | -122.340375 | Apartment | 3.0 | Real Bed | within an hour | 97.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 1 | strict | 0 | 0 | 8027776 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1354 | Downtown | 47.613581 | -122.348902 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 187.0 | 2 | strict | 1 | 1 | 6868378 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1355 | Downtown | 47.614962 | -122.333658 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 7249508 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1356 | Downtown | 47.616042 | -122.344438 | Apartment | 1.0 | Real Bed | within an hour | 76.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 100.0 | 2 | strict | 0 | 0 | 7544337 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1357 | Downtown | 47.616430 | -122.346344 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 0.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 186.0 | 2 | strict | 1 | 1 | 19623 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1358 | Downtown | 47.614295 | -122.336817 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 171.0 | 2 | strict | 0 | 0 | 4210585 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1359 | Downtown | 47.615290 | -122.337954 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 181.0 | 2 | strict | 0 | 0 | 5784320 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1360 | Downtown | 47.615438 | -122.347403 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 149.0 | 2 | strict | 0 | 0 | 7347229 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1361 | Downtown | 47.614525 | -122.346469 | Apartment | 2.0 | Real Bed | within a day | 64.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 270.0 | 1 | strict | 0 | 0 | 4676275 | 8.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1362 | Downtown | 47.613679 | -122.349330 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 195.0 | 2 | strict | 1 | 1 | 2489283 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1363 | Downtown | 47.616075 | -122.346677 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 2 | strict | 0 | 0 | 277416 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1364 | Downtown | 47.617343 | -122.356168 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Kitchen,"Free Parking on Premises","Elevato... | 150.0 | 3 | moderate | 0 | 0 | 7699356 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1365 | Downtown | 47.613737 | -122.347775 | Apartment | 3.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV","Wireless Internet",Pool,Kitchen... | 230.0 | 2 | strict | 1 | 1 | 5847934 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1366 | Downtown | 47.618370 | -122.338457 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 183.0 | 2 | strict | 1 | 1 | 9886971 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1367 | Downtown | 47.614449 | -122.340694 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 165.0 | 2 | strict | 0 | 0 | 5446180 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1368 | Downtown | 47.618034 | -122.346308 | Apartment | 5.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 8 | 2.0 | 3.0 | "Cable TV","Wireless Internet","Air Conditioni... | 335.0 | 3 | strict | 1 | 1 | 4242626 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1369 | Downtown | 47.615983 | -122.346660 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 75.0 | 2 | moderate | 0 | 0 | 3226793 | 8.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1370 | Downtown | 47.614196 | -122.344458 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 107.0 | 2 | strict | 1 | 1 | 23430 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1371 | Downtown | 47.613541 | -122.337731 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 167.0 | 2 | strict | 0 | 0 | 2186330 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1372 | Downtown | 47.617413 | -122.346763 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 225.0 | 1 | flexible | 0 | 0 | 9477204 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1373 | Downtown | 47.614344 | -122.346679 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Pool,Kitchen,"F... | 120.0 | 2 | strict | 1 | 1 | 5683765 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1374 | Downtown | 47.615540 | -122.340599 | Apartment | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 110.0 | 1 | moderate | 0 | 0 | 9900319 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1375 | Downtown | 47.615664 | -122.338666 | Apartment | 5.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 8 | 2.0 | 3.0 | "Cable TV","Wireless Internet","Air Conditioni... | 425.0 | 3 | strict | 1 | 1 | 5691933 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1376 | Downtown | 47.616392 | -122.348063 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 139.0 | 2 | strict | 1 | 1 | 8829472 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1377 | Downtown | 47.613038 | -122.345836 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 149.0 | 2 | strict | 1 | 1 | 5183938 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1378 | Downtown | 47.613860 | -122.348787 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 1 | strict | 0 | 0 | 224763 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1379 | Downtown | 47.618309 | -122.346481 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 130.0 | 2 | strict | 0 | 0 | 4520179 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1380 | Downtown | 47.617816 | -122.348321 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 115.0 | 1 | strict | 1 | 1 | 9263252 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1381 | Downtown | 47.616564 | -122.351442 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 159.0 | 2 | strict | 0 | 1 | 284813 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1382 | Downtown | 47.613852 | -122.347893 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | "Cable TV","Wireless Internet","Air Conditioni... | 120.0 | 2 | strict | 1 | 1 | 4402880 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1383 | Downtown | 47.613486 | -122.349286 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 1 | moderate | 0 | 0 | 2660384 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1384 | Downtown | 47.616026 | -122.348525 | Condominium | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 1 | strict | 0 | 1 | 6973790 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1385 | Downtown | 47.614898 | -122.340661 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 169.0 | 3 | strict | 0 | 0 | 7116795 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1386 | Downtown | 47.615306 | -122.334697 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 110.0 | 3 | flexible | 0 | 0 | 9910189 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1387 | Downtown | 47.615332 | -122.333908 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 170.0 | 2 | strict | 0 | 0 | 6854552 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1388 | Downtown | 47.611477 | -122.348518 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 115.0 | 1 | flexible | 0 | 0 | 1857141 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1389 | Downtown | 47.616305 | -122.352587 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Belltown | Entire home/apt | 7 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 112.0 | 2 | strict | 0 | 0 | 8668410 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1390 | Downtown | 47.611711 | -122.347532 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 120.0 | 2 | flexible | 0 | 0 | 8517235 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1391 | Downtown | 47.614404 | -122.337570 | Apartment | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | "Cable TV","Wireless Internet",Pool,Kitchen,"F... | 239.0 | 3 | strict | 1 | 1 | 4311244 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1392 | Downtown | 47.612709 | -122.344114 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 135.0 | 2 | strict | 0 | 0 | 7616008 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1393 | Downtown | 47.615214 | -122.347636 | Loft | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 125.0 | 1 | strict | 0 | 0 | 4776823 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1394 | Downtown | 47.617537 | -122.346550 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 150.0 | 1 | flexible | 0 | 0 | 8082659 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1395 | Downtown | 47.614057 | -122.347270 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 197.0 | 2 | strict | 1 | 1 | 808134 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1396 | Downtown | 47.618221 | -122.357568 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 0.5 | 0.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 79.0 | 1 | flexible | 0 | 0 | 8984454 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1397 | Downtown | 47.610916 | -122.346629 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 106.0 | 2 | moderate | 0 | 0 | 6403878 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1398 | Downtown | 47.616179 | -122.349417 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Gym,"Elev... | 139.0 | 1 | strict | 1 | 1 | 8427254 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1399 | Downtown | 47.612968 | -122.347775 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,D... | 150.0 | 2 | moderate | 1 | 1 | 529090 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1400 | Downtown | 47.611411 | -122.340830 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 149.0 | 2 | strict | 1 | 1 | 2392869 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1401 | Downtown | 47.617149 | -122.351769 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 115.0 | 1 | strict | 0 | 0 | 5289293 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1402 | Downtown | 47.615434 | -122.348521 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Pool,Kitchen... | 175.0 | 2 | strict | 0 | 0 | 4783585 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1403 | Downtown | 47.615087 | -122.347142 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 2 | strict | 1 | 1 | 286080 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1404 | Downtown | 47.614419 | -122.336206 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 124.0 | 14 | strict | 1 | 1 | 1601714 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1405 | Downtown | 47.614376 | -122.345043 | Apartment | 1.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | Belltown | Shared room | 1 | 1.0 | 1.0 | "Wireless Internet",Gym,"Elevator in Building"... | 65.0 | 1 | flexible | 0 | 0 | 9474025 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
| 1406 | Downtown | 47.613259 | -122.345147 | Apartment | 4.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | Belltown | Entire home/apt | 5 | 1.0 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 229.0 | 1 | strict | 0 | 0 | 5459895 | 8.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1407 | Downtown | 47.617968 | -122.347514 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 125.0 | 1 | moderate | 0 | 0 | 7360078 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1408 | Downtown | 47.616240 | -122.350684 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 40.0 | 1 | flexible | 0 | 0 | 8843162 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1409 | Downtown | 47.613248 | -122.348980 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 183.0 | 2 | strict | 0 | 0 | 8409750 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1410 | Downtown | 47.615977 | -122.348045 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"P... | 169.0 | 2 | flexible | 0 | 0 | 6033201 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1411 | Downtown | 47.615107 | -122.348688 | Condominium | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Pool,Kitchen... | 155.0 | 2 | strict | 0 | 0 | 5058302 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1412 | Downtown | 47.614347 | -122.340602 | Apartment | 1.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,Heating,Shampoo | 75.0 | 2 | strict | 0 | 0 | 4264056 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1413 | Downtown | 47.612486 | -122.345645 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 89.0 | 1 | strict | 0 | 1 | 1707064 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1414 | Downtown | 47.617730 | -122.347685 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Belltown | Shared room | 4 | 1.0 | 1.0 | "Wheelchair Accessible",Kitchen,"Elevator in B... | 35.0 | 2 | flexible | 0 | 0 | 8236094 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1415 | Downtown | 47.616123 | -122.345694 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 115.0 | 2 | strict | 0 | 0 | 8072907 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1416 | Downtown | 47.616878 | -122.348484 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 115.0 | 2 | flexible | 0 | 0 | 4082986 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1417 | Downtown | 47.611492 | -122.341192 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 165.0 | 2 | moderate | 0 | 0 | 9138600 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 1418 | Downtown | 47.614275 | -122.347247 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 115.0 | 1 | strict | 1 | 1 | 7922197 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1419 | Downtown | 47.615974 | -122.340537 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 1 | flexible | 0 | 0 | 10235014 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1420 | Downtown | 47.617781 | -122.345971 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 166.0 | 3 | strict | 1 | 1 | 4190689 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1421 | Downtown | 47.615538 | -122.346558 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 105.0 | 1 | strict | 0 | 0 | 3033913 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1422 | Downtown | 47.612276 | -122.343781 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 145.0 | 2 | strict | 0 | 0 | 6362918 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1423 | Downtown | 47.615588 | -122.348822 | Apartment | 2.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 1 | moderate | 0 | 0 | 2935486 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1424 | Downtown | 47.617736 | -122.349330 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 139.0 | 2 | strict | 1 | 1 | 9031119 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1425 | Downtown | 47.615152 | -122.342230 | Apartment | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 82.0 | 1 | strict | 0 | 1 | 5270886 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1426 | Downtown | 47.614190 | -122.344957 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 147.0 | 2 | strict | 1 | 1 | 59838 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1427 | Downtown | 47.616512 | -122.347912 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 150.0 | 1 | flexible | 0 | 0 | 7727428 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1428 | Downtown | 47.614832 | -122.349029 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 187.0 | 2 | strict | 1 | 1 | 59708 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1429 | Downtown | 47.615070 | -122.345919 | Apartment | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 80.0 | 1 | strict | 1 | 1 | 1476298 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1430 | Downtown | 47.612614 | -122.344045 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 130.0 | 1 | flexible | 0 | 0 | 6850007 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1431 | Downtown | 47.612674 | -122.341665 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 130.0 | 3 | flexible | 0 | 0 | 8922554 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1432 | Downtown | 47.611165 | -122.347545 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 100.0 | 6 | strict | 0 | 0 | 7440415 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1433 | Downtown | 47.615178 | -122.351325 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Belltown | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 95.0 | 1 | flexible | 0 | 0 | 6490091 | 9.428571 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1434 | Downtown | 47.617449 | -122.346157 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Belltown | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 68.0 | 1 | strict | 0 | 0 | 9311687 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1435 | Downtown | 47.617004 | -122.353980 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 150.0 | 3 | moderate | 0 | 0 | 8103365 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1436 | Downtown | 47.613483 | -122.348432 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Belltown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 165.0 | 2 | strict | 0 | 0 | 631445 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1437 | Downtown | 47.612823 | -122.345553 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 117.0 | 6 | strict | 0 | 0 | 6545773 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1438 | Downtown | 47.613647 | -122.341621 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 1 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 168.0 | 1 | strict | 0 | 0 | 8036985 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1439 | Downtown | 47.617155 | -122.352590 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Belltown | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 2 | moderate | 0 | 0 | 9699490 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1440 | Downtown | 47.615540 | -122.343342 | Apartment | 1.0 | Real Bed | within a day | 82.0 | 100.0 | 0 | Belltown | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 79.0 | 2 | moderate | 0 | 0 | 4661374 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1441 | Downtown | 47.599016 | -122.327080 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 1 | strict | 1 | 1 | 365550 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1442 | Downtown | 47.601326 | -122.324640 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 80.0 | 2 | moderate | 0 | 0 | 7777381 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1443 | Downtown | 47.597797 | -122.319860 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 120.0 | 1 | moderate | 1 | 1 | 1778989 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1444 | Downtown | 47.599249 | -122.328243 | Other | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Shared room | 1 | 2.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 40.0 | 1 | flexible | 0 | 0 | 5031285 | 9.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1445 | Downtown | 47.599313 | -122.328318 | Other | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Shared room | 1 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 40.0 | 1 | flexible | 0 | 0 | 5031383 | 9.428571 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1446 | Downtown | 47.599125 | -122.323115 | Apartment | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | International District | Private room | 2 | 0.0 | 1.0 | Internet,Kitchen,Heating,Washer,Dryer,"Smoke D... | 65.0 | 1 | flexible | 0 | 0 | 9685856 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1447 | Downtown | 47.599081 | -122.325591 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 89.0 | 1 | strict | 1 | 1 | 208356 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1448 | Downtown | 47.599176 | -122.324660 | Apartment | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | International District | Entire home/apt | 2 | 1.0 | 1.0 | Kitchen,"Elevator in Building",Heating,Washer,... | 79.0 | 1 | flexible | 0 | 0 | 9449062 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1449 | Downtown | 47.601486 | -122.325866 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 69.0 | 2 | moderate | 0 | 0 | 3552523 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1450 | Downtown | 47.600605 | -122.325735 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 69.0 | 1 | moderate | 0 | 0 | 3487824 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1451 | Downtown | 47.599399 | -122.326152 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Elevator in Building",... | 74.0 | 1 | moderate | 0 | 0 | 8501705 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 |
| 1452 | Downtown | 47.598980 | -122.324733 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | International District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Smoking ... | 65.0 | 1 | flexible | 0 | 0 | 10140582 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 1453 | Downtown | 47.599641 | -122.325054 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 2 | moderate | 0 | 0 | 8068232 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1454 | Downtown | 47.601503 | -122.325174 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 250.0 | 2 | strict | 1 | 1 | 1709737 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1455 | Downtown | 47.601353 | -122.327320 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 175.0 | 3 | moderate | 0 | 0 | 9408991 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1456 | Downtown | 47.599269 | -122.328472 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | International District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 99.0 | 2 | strict | 0 | 0 | 7110655 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1457 | Downtown | 47.601165 | -122.326999 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | International District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 130.0 | 1 | flexible | 0 | 0 | 9012948 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1458 | Downtown | 47.605429 | -122.331364 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wheelchair Accessible",Kitchen,"Elevator i... | 120.0 | 1 | strict | 0 | 0 | 8372038 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1459 | Downtown | 47.607494 | -122.339689 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 190.0 | 7 | strict | 0 | 0 | 2051658 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1460 | Downtown | 47.602629 | -122.336832 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 280.0 | 2 | strict | 1 | 1 | 7506165 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1461 | Downtown | 47.607327 | -122.339378 | Condominium | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | strict | 0 | 1 | 7311407 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1462 | Downtown | 47.607275 | -122.331564 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | strict | 0 | 0 | 397117 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1463 | Downtown | 47.609703 | -122.336260 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 159.0 | 2 | moderate | 0 | 0 | 4516960 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1464 | Downtown | 47.607613 | -122.339086 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 6 | flexible | 0 | 0 | 9089308 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1465 | Downtown | 47.606919 | -122.339713 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 139.0 | 2 | strict | 0 | 0 | 934123 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1466 | Downtown | 47.606730 | -122.337882 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 180.0 | 2 | strict | 1 | 1 | 3891695 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1467 | Downtown | 47.611659 | -122.331087 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 151.0 | 3 | strict | 1 | 1 | 6514446 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1468 | Downtown | 47.614451 | -122.332745 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | 99.0 | 1 | flexible | 0 | 0 | 9863312 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1469 | Downtown | 47.614110 | -122.332481 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 219.0 | 2 | strict | 1 | 1 | 8805211 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1470 | Downtown | 47.612953 | -122.334427 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 1 | flexible | 0 | 0 | 7954781 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1471 | Downtown | 47.612884 | -122.330676 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 3 | moderate | 0 | 0 | 2944021 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1472 | Downtown | 47.609890 | -122.337953 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 170.0 | 7 | strict | 1 | 1 | 4395349 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1473 | Downtown | 47.610579 | -122.338165 | Apartment | 1.0 | Pull-out Sofa | within a day | 100.0 | 100.0 | 1 | Central Business District | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,D... | 115.0 | 1 | moderate | 0 | 0 | 3282000 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1474 | Downtown | 47.609836 | -122.334797 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 2 | strict | 0 | 0 | 6687939 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1475 | Downtown | 47.610930 | -122.336148 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 110.0 | 2 | flexible | 0 | 0 | 6613192 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1476 | Downtown | 47.606037 | -122.337476 | Apartment | 1.0 | Real Bed | within a day | 92.0 | 100.0 | 0 | Central Business District | Entire home/apt | 1 | 1.0 | 1.0 | TV,Pool,Kitchen,"Pets Allowed",Gym,"Pets live ... | 59.0 | 3 | flexible | 0 | 0 | 9900303 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 1477 | Downtown | 47.612666 | -122.333042 | Condominium | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 110.0 | 1 | strict | 1 | 1 | 7860710 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1478 | Downtown | 47.603183 | -122.336996 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 199.0 | 2 | strict | 1 | 1 | 7510776 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1479 | Downtown | 47.606915 | -122.329825 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 170.0 | 2 | flexible | 0 | 0 | 6773472 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1480 | Downtown | 47.614156 | -122.332950 | Apartment | 1.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 1 | flexible | 0 | 0 | 7965184 | 7.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1481 | Downtown | 47.612458 | -122.332781 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 300.0 | 2 | strict | 1 | 1 | 9183380 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1482 | Downtown | 47.614275 | -122.331166 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 219.0 | 2 | strict | 1 | 1 | 9201292 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1483 | Downtown | 47.614344 | -122.332938 | Apartment | 1.0 | Real Bed | a few days or more | 17.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.5 | 1.0 | TV,"Wireless Internet","Air Conditioning",Pool... | 300.0 | 2 | moderate | 0 | 0 | 7332364 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1484 | Downtown | 47.614436 | -122.333004 | Apartment | 2.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 235.0 | 5 | flexible | 0 | 0 | 9028315 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1485 | Downtown | 47.605492 | -122.337246 | Apartment | 1.0 | Real Bed | within a day | 92.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 59.0 | 2 | flexible | 0 | 0 | 9939025 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1486 | Downtown | 47.613506 | -122.332787 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 156.0 | 2 | strict | 0 | 0 | 8100190 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1487 | Downtown | 47.605767 | -122.337571 | Apartment | 3.0 | Pull-out Sofa | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 147.0 | 2 | strict | 0 | 0 | 935671 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1488 | Downtown | 47.607008 | -122.337206 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 135.0 | 2 | strict | 0 | 0 | 936177 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1489 | Downtown | 47.606002 | -122.338613 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 128.0 | 2 | strict | 0 | 0 | 922986 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1490 | Downtown | 47.605557 | -122.339089 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 104.0 | 2 | strict | 0 | 0 | 1200083 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1491 | Downtown | 47.606003 | -122.338900 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 114.0 | 2 | strict | 0 | 0 | 935432 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1492 | Downtown | 47.614364 | -122.331716 | Apartment | 1.0 | Real Bed | within a day | 87.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 1.0 | 0.0 | 200.0 | 1 | strict | 0 | 0 | 604600 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1493 | Downtown | 47.613560 | -122.333046 | Other | 2.0 | Real Bed | within a few hours | 92.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 0.0 | "Cable TV",Internet,"Wireless Internet",Pool,K... | 132.0 | 1 | strict | 0 | 0 | 1251763 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1494 | Downtown | 47.607484 | -122.339460 | Apartment | 1.0 | Real Bed | within an hour | 95.0 | 100.0 | 0 | Central Business District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 150.0 | 1 | strict | 0 | 0 | 7517684 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1495 | Downtown | 47.613135 | -122.331764 | Apartment | 3.0 | Real Bed | within a day | 87.0 | 100.0 | 0 | Central Business District | Private room | 6 | 2.0 | 1.0 | "Cable TV","Elevator in Building",Heating,Wash... | 250.0 | 1 | strict | 0 | 0 | 607788 | 8.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
| 1496 | Downtown | 47.607250 | -122.336671 | Apartment | 2.0 | Real Bed | within a day | 90.0 | 100.0 | 1 | Central Business District | Shared room | 2 | 1.0 | 1.0 | Kitchen,Heating,"Smoke Detector","Fire Extingu... | 40.0 | 2 | flexible | 0 | 0 | 6278361 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 1497 | Downtown | 47.607361 | -122.339602 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 126.0 | 2 | strict | 0 | 0 | 936378 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1498 | Downtown | 47.606624 | -122.337337 | Apartment | 1.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 365.0 | 1 | strict | 0 | 0 | 7350870 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1499 | Downtown | 47.605932 | -122.330832 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | strict | 0 | 0 | 92835 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1500 | Downtown | 47.610876 | -122.339289 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 350.0 | 20 | strict | 1 | 1 | 4009508 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1501 | Downtown | 47.606799 | -122.338192 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 143.0 | 2 | strict | 0 | 0 | 935862 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1502 | Downtown | 47.612547 | -122.333331 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 110.0 | 3 | strict | 0 | 0 | 8187537 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1503 | Downtown | 47.607158 | -122.333210 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 100.0 | 1 | strict | 0 | 0 | 10132385 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1504 | Downtown | 47.607466 | -122.338902 | Apartment | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 1 | strict | 0 | 0 | 9516114 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1505 | Downtown | 47.607355 | -122.340198 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 175.0 | 3 | moderate | 0 | 0 | 2749725 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1506 | Downtown | 47.612515 | -122.333289 | Apartment | 1.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | Central Business District | Entire home/apt | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 150.0 | 2 | strict | 0 | 0 | 9813231 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1507 | Downtown | 47.612078 | -122.332592 | Apartment | 2.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 143.0 | 2 | strict | 0 | 0 | 8101251 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1508 | Downtown | 47.613051 | -122.332437 | Other | 1.0 | Real Bed | within a few hours | 92.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Pool,Kitchen,Gy... | 121.0 | 1 | strict | 0 | 0 | 5201816 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1509 | Downtown | 47.613925 | -122.331454 | Apartment | 1.0 | Real Bed | within an hour | 89.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets Allowed",... | 150.0 | 1 | flexible | 0 | 0 | 9329068 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1510 | Downtown | 47.609674 | -122.335708 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 149.0 | 1 | strict | 0 | 0 | 8704438 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1511 | Downtown | 47.607368 | -122.335082 | Apartment | 3.0 | Real Bed | within a few hours | 80.0 | 100.0 | 1 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 168.0 | 2 | flexible | 0 | 0 | 8052542 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1512 | Downtown | 47.605420 | -122.337843 | Apartment | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | "Cable TV","Wireless Internet",Pool,Kitchen,"F... | 245.0 | 3 | strict | 1 | 1 | 4251426 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1513 | Downtown | 47.612759 | -122.332443 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 129.0 | 4 | moderate | 0 | 0 | 6020744 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1514 | Downtown | 47.606130 | -122.337768 | Apartment | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | "Cable TV","Wireless Internet","Air Conditioni... | 245.0 | 3 | strict | 1 | 1 | 4251235 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1515 | Downtown | 47.612548 | -122.331630 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 89.0 | 2 | strict | 0 | 0 | 8093529 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1516 | Downtown | 47.613125 | -122.330718 | Apartment | 2.0 | Pull-out Sofa | within a few hours | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 3 | strict | 0 | 0 | 654734 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1517 | Downtown | 47.603536 | -122.337122 | Apartment | 3.0 | Real Bed | within a day | 64.0 | 100.0 | 0 | Central Business District | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 144.0 | 1 | strict | 0 | 0 | 3489083 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1518 | Downtown | 47.606147 | -122.334806 | Apartment | 3.0 | Real Bed | within a few hours | 93.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 188.0 | 1 | strict | 0 | 0 | 8691263 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1519 | Downtown | 47.614326 | -122.332676 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 179.0 | 20 | strict | 1 | 1 | 3971934 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1520 | Downtown | 47.605487 | -122.338669 | Apartment | 2.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 129.0 | 5 | moderate | 0 | 0 | 7732071 | 7.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1521 | Downtown | 47.613762 | -122.333011 | Other | 2.0 | Real Bed | within a few hours | 92.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Pool,K... | 170.0 | 1 | strict | 0 | 0 | 1251813 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |
| 1522 | Downtown | 47.610101 | -122.337660 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 2 | strict | 0 | 0 | 10247453 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1523 | Downtown | 47.613149 | -122.334402 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 276.0 | 1 | moderate | 0 | 0 | 6740521 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1524 | Downtown | 47.609333 | -122.335474 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 135.0 | 2 | strict | 0 | 0 | 2955782 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1525 | Downtown | 47.606302 | -122.340528 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 150.0 | 2 | strict | 0 | 0 | 6691324 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1526 | Downtown | 47.611058 | -122.334284 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 140.0 | 1 | strict | 0 | 0 | 8568567 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1527 | Downtown | 47.613816 | -122.331941 | Other | 1.0 | Real Bed | within a few hours | 92.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Pool,Kitchen,Gy... | 121.0 | 1 | strict | 0 | 0 | 1251707 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1528 | Downtown | 47.605575 | -122.330950 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 0.0 | 175.0 | 1 | flexible | 0 | 0 | 10125020 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1529 | Downtown | 47.606083 | -122.339434 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 147.0 | 2 | strict | 0 | 0 | 931785 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1530 | Downtown | 47.611927 | -122.331881 | Condominium | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 149.0 | 1 | moderate | 0 | 0 | 7763613 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1531 | Downtown | 47.608221 | -122.338078 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 7 | strict | 1 | 1 | 9574602 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1532 | Downtown | 47.612136 | -122.333026 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 300.0 | 2 | strict | 1 | 1 | 9024838 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1533 | Downtown | 47.613694 | -122.331779 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 115.0 | 1 | strict | 0 | 0 | 8427227 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1534 | Downtown | 47.608553 | -122.338010 | Condominium | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Central Business District | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 290.0 | 7 | strict | 0 | 0 | 6993019 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1535 | Downtown | 47.607246 | -122.339129 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Pool,Kitchen,Gym,... | 129.0 | 1 | strict | 0 | 0 | 6746826 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1536 | Downtown | 47.610379 | -122.338678 | Apartment | 2.0 | Real Bed | within an hour | 93.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 175.0 | 1 | moderate | 0 | 0 | 3592838 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1537 | Downtown | 47.612388 | -122.330842 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 220.0 | 14 | strict | 1 | 1 | 1954452 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1538 | Downtown | 47.606991 | -122.333865 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 90.0 | 2 | strict | 0 | 0 | 1651324 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1539 | Downtown | 47.607453 | -122.339060 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Pool,Kitchen,Door... | 120.0 | 1 | moderate | 0 | 0 | 8016646 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1540 | Downtown | 47.610007 | -122.338016 | Apartment | 2.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 325.0 | 6 | moderate | 0 | 0 | 6115704 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1541 | Downtown | 47.613663 | -122.331734 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.5 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 230.0 | 1 | strict | 1 | 1 | 9237535 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1542 | Downtown | 47.607412 | -122.339167 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 127.0 | 2 | strict | 0 | 0 | 2191633 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1543 | Downtown | 47.605807 | -122.338555 | Apartment | 2.0 | Real Bed | within an hour | 95.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 168.0 | 1 | strict | 0 | 0 | 7451624 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1544 | Downtown | 47.606927 | -122.339242 | Apartment | 2.0 | Real Bed | within a few hours | 87.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,D... | 117.0 | 2 | moderate | 0 | 0 | 8311242 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1545 | Downtown | 47.605211 | -122.329943 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 85.0 | 2 | moderate | 1 | 1 | 3977605 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1546 | Downtown | 47.610483 | -122.337029 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 122.0 | 1 | moderate | 0 | 0 | 6344566 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1547 | Downtown | 47.607361 | -122.337607 | Apartment | 3.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 142.0 | 2 | strict | 0 | 0 | 2191169 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1548 | Downtown | 47.611316 | -122.339920 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 237.0 | 2 | strict | 1 | 1 | 5213468 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1549 | Downtown | 47.612374 | -122.335125 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Central Business District | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 350.0 | 3 | flexible | 0 | 0 | 9822759 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1550 | Downtown | 47.606882 | -122.340596 | Apartment | 2.0 | Real Bed | within a day | 63.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Wheelchair Acc... | 99.0 | 2 | strict | 0 | 1 | 945645 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 1551 | Downtown | 47.612465 | -122.332634 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 110.0 | 3 | strict | 0 | 0 | 8193241 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1552 | Downtown | 47.606556 | -122.338829 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Gym,... | 300.0 | 1 | flexible | 0 | 0 | 6916167 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1553 | Downtown | 47.613063 | -122.330652 | Apartment | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 7 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 225.0 | 3 | strict | 0 | 0 | 6941113 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1554 | Downtown | 47.611863 | -122.338782 | Apartment | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 1 | strict | 1 | 1 | 2621746 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1555 | Downtown | 47.608176 | -122.337655 | Apartment | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Central Business District | Shared room | 6 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 1 | moderate | 1 | 0 | 449602 | 10.000000 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1556 | Downtown | 47.607582 | -122.338842 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Central Business District | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 275.0 | 1 | flexible | 0 | 0 | 1724849 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1557 | Downtown | 47.602662 | -122.337537 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 183.0 | 2 | strict | 1 | 1 | 3868138 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1558 | Downtown | 47.612067 | -122.333213 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Central Business District | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Air C... | 110.0 | 3 | strict | 0 | 0 | 8193054 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1559 | Downtown | 47.606897 | -122.340684 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 156.0 | 2 | strict | 1 | 1 | 6807981 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1560 | Downtown | 47.605672 | -122.331494 | Apartment | 1.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Central Business District | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 169.0 | 1 | strict | 0 | 0 | 1163345 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1561 | Downtown | 47.611002 | -122.328586 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 150.0 | 2 | flexible | 0 | 0 | 6436727 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1562 | Downtown | 47.611334 | -122.326048 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 125.0 | 1 | flexible | 0 | 0 | 8553556 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1563 | Downtown | 47.612257 | -122.326366 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 3 | moderate | 0 | 0 | 7389483 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1564 | Downtown | 47.613210 | -122.323278 | Apartment | 1.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 155.0 | 3 | strict | 0 | 0 | 1901706 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1565 | Downtown | 47.610965 | -122.329072 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 151.0 | 3 | strict | 1 | 1 | 4137114 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1566 | Downtown | 47.613176 | -122.329084 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 2.0 | 2.0 | "Cable TV","Wireless Internet","Air Conditioni... | 175.0 | 3 | moderate | 0 | 0 | 5249093 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1567 | Downtown | 47.613043 | -122.323214 | Apartment | 2.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 196.0 | 3 | strict | 0 | 0 | 356608 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1568 | Downtown | 47.610962 | -122.330321 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Kitchen,"Elevator in Building",H... | 110.0 | 1 | flexible | 0 | 0 | 5270223 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1569 | Downtown | 47.613456 | -122.324980 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 140.0 | 3 | flexible | 0 | 0 | 7824870 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1570 | Downtown | 47.611855 | -122.330491 | Apartment | 3.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | First Hill | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 3 | strict | 1 | 1 | 828298 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1571 | Downtown | 47.610162 | -122.323572 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Breakfast,"Buzzer/... | 250.0 | 1 | flexible | 0 | 0 | 8446347 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1572 | Downtown | 47.608872 | -122.328106 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Pool,Kitchen,Gym,... | 90.0 | 1 | moderate | 0 | 0 | 5989894 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1573 | Downtown | 47.608156 | -122.329198 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 105.0 | 3 | flexible | 0 | 0 | 7699495 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1574 | Downtown | 47.611091 | -122.330733 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | moderate | 0 | 0 | 3270492 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1575 | Downtown | 47.608348 | -122.328674 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 139.0 | 2 | strict | 1 | 1 | 5372156 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1576 | Downtown | 47.612633 | -122.329442 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 115.0 | 3 | moderate | 0 | 0 | 2933877 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1577 | Downtown | 47.611328 | -122.330600 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 185.0 | 3 | strict | 0 | 0 | 4943016 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1578 | Downtown | 47.611369 | -122.328853 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 3 | moderate | 0 | 0 | 3624990 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1579 | Downtown | 47.609538 | -122.330178 | Apartment | 1.0 | Real Bed | within a day | 82.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 75.0 | 1 | moderate | 0 | 0 | 7391003 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1580 | Downtown | 47.609407 | -122.329115 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 1 | flexible | 0 | 0 | 9922140 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1581 | Downtown | 47.609702 | -122.328863 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Pool,Kitchen,"Fre... | 129.0 | 1 | flexible | 0 | 0 | 10126199 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1582 | Downtown | 47.608449 | -122.328811 | Apartment | 1.0 | Airbed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 70.0 | 2 | flexible | 0 | 0 | 6752031 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1583 | Downtown | 47.612818 | -122.327615 | Apartment | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Smoki... | 79.0 | 2 | strict | 1 | 1 | 1815304 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1584 | Downtown | 47.609807 | -122.324424 | Apartment | 2.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,Kitchen,Doorman,Gym,"Elevator in B... | 109.0 | 1 | strict | 0 | 0 | 10211716 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1585 | Downtown | 47.613998 | -122.326396 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 100.0 | 2 | flexible | 0 | 0 | 3793047 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1586 | Downtown | 47.613675 | -122.322028 | Apartment | 1.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 155.0 | 3 | strict | 0 | 0 | 353039 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1587 | Downtown | 47.610900 | -122.325209 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Buzzer/Wireles... | 87.0 | 2 | moderate | 0 | 0 | 5218550 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1588 | Downtown | 47.606923 | -122.325264 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 165.0 | 1 | flexible | 0 | 0 | 7809494 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1589 | Downtown | 47.613174 | -122.324490 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 100.0 | 1 | flexible | 0 | 0 | 6627403 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1590 | Downtown | 47.612926 | -122.328672 | Apartment | 1.0 | Real Bed | within an hour | 76.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 78.0 | 1 | strict | 0 | 0 | 8065715 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1591 | Downtown | 47.613655 | -122.323203 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Smoke... | 150.0 | 2 | moderate | 0 | 0 | 7431247 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1592 | Downtown | 47.608010 | -122.328739 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 3 | moderate | 0 | 0 | 9460 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1593 | Downtown | 47.610136 | -122.326520 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 80.0 | 2 | strict | 0 | 0 | 6993978 | 9.857143 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1594 | Downtown | 47.609073 | -122.323577 | Apartment | 2.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Doorman,Gym,"E... | 185.0 | 2 | strict | 0 | 0 | 9979329 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 1595 | Downtown | 47.612447 | -122.330340 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 169.0 | 3 | strict | 0 | 0 | 9061868 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1596 | Downtown | 47.612456 | -122.330141 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 129.0 | 3 | strict | 1 | 1 | 1246769 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1597 | Downtown | 47.613929 | -122.326352 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 80.0 | 3 | strict | 0 | 0 | 1107845 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1598 | Downtown | 47.613453 | -122.323451 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet","Wheelchair Accessible",Ki... | 77.0 | 2 | moderate | 0 | 0 | 1583047 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1599 | Downtown | 47.611760 | -122.321416 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 1 | moderate | 0 | 0 | 7735282 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1600 | Downtown | 47.606238 | -122.327307 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 119.0 | 2 | moderate | 0 | 0 | 7710713 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1601 | Downtown | 47.611714 | -122.328602 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 129.0 | 1 | moderate | 0 | 0 | 7735313 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1602 | Downtown | 47.606661 | -122.327792 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 145.0 | 2 | flexible | 0 | 0 | 8869027 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1603 | Downtown | 47.609567 | -122.327712 | Condominium | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | First Hill | Private room | 1 | 0.5 | 1.0 | "Cable TV",Internet,"Wireless Internet","Air C... | 250.0 | 1 | flexible | 0 | 0 | 9781881 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1604 | Downtown | 47.606737 | -122.325904 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Pets live on this prop... | 99.0 | 2 | moderate | 0 | 0 | 6239907 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 1605 | Downtown | 47.611812 | -122.329244 | Apartment | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 230.0 | 3 | strict | 1 | 1 | 6315269 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1606 | Downtown | 47.610885 | -122.324883 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 109.0 | 2 | strict | 1 | 1 | 9318524 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1607 | Downtown | 47.608419 | -122.324201 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 85.0 | 1 | moderate | 0 | 0 | 6812415 | 10.000000 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1608 | Downtown | 47.611657 | -122.323199 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Smoke Detector... | 120.0 | 6 | flexible | 0 | 0 | 7118258 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1609 | Downtown | 47.607794 | -122.327463 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Buzzer/Wireless I... | 150.0 | 1 | moderate | 0 | 0 | 8505421 | 4.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1610 | Downtown | 47.613870 | -122.326550 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 115.0 | 1 | moderate | 0 | 0 | 6246861 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1611 | Downtown | 47.609418 | -122.328689 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Pool,Kitchen,Gym,... | 130.0 | 1 | moderate | 0 | 0 | 7828222 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1612 | Downtown | 47.612294 | -122.329654 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 129.0 | 3 | strict | 0 | 0 | 7533901 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1613 | Downtown | 47.607891 | -122.327808 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 129.0 | 2 | strict | 1 | 1 | 3803947 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1614 | Downtown | 47.611720 | -122.330425 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 195.0 | 3 | moderate | 0 | 0 | 2943860 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1615 | Downtown | 47.611603 | -122.317229 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | First Hill | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Doorman,"... | 500.0 | 5 | strict | 0 | 0 | 7388225 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1616 | Downtown | 47.611919 | -122.330335 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 195.0 | 3 | moderate | 0 | 0 | 2620429 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1617 | Downtown | 47.611828 | -122.329414 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 0.0 | Kitchen,"Elevator in Building",Heating,"Family... | 250.0 | 1 | flexible | 0 | 0 | 5036739 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1618 | Downtown | 47.607951 | -122.328237 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 2 | strict | 0 | 0 | 2978929 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1619 | Downtown | 47.606808 | -122.328980 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 110.0 | 2 | moderate | 0 | 0 | 7699096 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1620 | Downtown | 47.611866 | -122.328552 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 121.0 | 3 | strict | 1 | 1 | 4439293 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1621 | Downtown | 47.613549 | -122.321305 | Apartment | 1.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 139.0 | 3 | strict | 0 | 0 | 580815 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1622 | Downtown | 47.613138 | -122.325162 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 120.0 | 2 | strict | 0 | 0 | 5315169 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1623 | Downtown | 47.611450 | -122.331084 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Ele... | 110.0 | 3 | moderate | 0 | 0 | 3906076 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1624 | Downtown | 47.613226 | -122.323601 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 69.0 | 1 | strict | 0 | 0 | 4566609 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1625 | Downtown | 47.610489 | -122.325329 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 100.0 | 1 | flexible | 0 | 0 | 9304465 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1626 | Downtown | 47.611595 | -122.330762 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 3 | strict | 0 | 0 | 1136984 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1627 | Downtown | 47.612468 | -122.330053 | Condominium | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 215.0 | 3 | moderate | 0 | 0 | 6494181 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1628 | Downtown | 47.609716 | -122.324725 | Apartment | 1.0 | Couch | within a few hours | 100.0 | 100.0 | 1 | First Hill | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 40.0 | 1 | flexible | 0 | 0 | 4494947 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1629 | Downtown | 47.612628 | -122.324581 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 103.0 | 1 | flexible | 0 | 0 | 9533648 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1630 | Downtown | 47.611481 | -122.329121 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 3 | strict | 0 | 0 | 284087 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1631 | Downtown | 47.609075 | -122.323050 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,D... | 139.0 | 14 | strict | 1 | 1 | 2825852 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1632 | Downtown | 47.608849 | -122.321754 | Condominium | 1.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 66.0 | 1 | flexible | 0 | 0 | 8817033 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1633 | Downtown | 47.612479 | -122.323747 | Apartment | 2.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 85.0 | 1 | flexible | 0 | 0 | 9097503 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 |
| 1634 | Downtown | 47.609670 | -122.322926 | Apartment | 1.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 65.0 | 1 | flexible | 0 | 0 | 10211609 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1635 | Downtown | 47.611003 | -122.328804 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 4 | moderate | 0 | 0 | 1684236 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1636 | Downtown | 47.613274 | -122.322238 | Apartment | 3.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 174.0 | 3 | strict | 0 | 0 | 1159226 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1637 | Downtown | 47.609225 | -122.323101 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 200.0 | 2 | strict | 1 | 1 | 9318440 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1638 | Downtown | 47.613651 | -122.321015 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 120.0 | 2 | moderate | 0 | 0 | 7884782 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1639 | Downtown | 47.611290 | -122.328943 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 1 | strict | 0 | 0 | 9236961 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1640 | Downtown | 47.611543 | -122.328682 | Apartment | 1.0 | Real Bed | within an hour | 76.0 | 100.0 | 0 | First Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 78.0 | 2 | strict | 0 | 0 | 8065531 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1641 | Downtown | 47.612279 | -122.330465 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 99.0 | 2 | flexible | 0 | 0 | 8342429 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1642 | Downtown | 47.612819 | -122.321286 | Apartment | 2.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 174.0 | 3 | strict | 0 | 0 | 2149219 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1643 | Downtown | 47.611856 | -122.324754 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 110.0 | 2 | moderate | 0 | 0 | 7678814 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1644 | Downtown | 47.608086 | -122.327992 | Apartment | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 1 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 72.0 | 4 | strict | 0 | 0 | 9432322 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1645 | Downtown | 47.606840 | -122.327754 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 190.0 | 2 | strict | 1 | 1 | 4410544 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1646 | Downtown | 47.608322 | -122.329996 | Apartment | 1.0 | Futon | within a day | 75.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 100.0 | 1 | flexible | 0 | 0 | 8129676 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1647 | Downtown | 47.612597 | -122.329876 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 151.0 | 3 | strict | 1 | 1 | 4614955 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1648 | Downtown | 47.612885 | -122.329241 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 3 | strict | 0 | 0 | 1043194 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1649 | Downtown | 47.609843 | -122.321200 | Apartment | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | First Hill | Entire home/apt | 7 | 2.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 250.0 | 1 | moderate | 0 | 0 | 8385687 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1650 | Downtown | 47.611581 | -122.329383 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 140.0 | 3 | moderate | 0 | 0 | 8579782 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1651 | Downtown | 47.609885 | -122.326948 | Apartment | 1.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | First Hill | Entire home/apt | 1 | 1.0 | 0.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 120.0 | 2 | strict | 0 | 0 | 9908825 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1652 | Downtown | 47.611231 | -122.325102 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 2 | strict | 1 | 1 | 9530877 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1653 | Downtown | 47.612651 | -122.323922 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 180.0 | 2 | strict | 0 | 0 | 8441263 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1654 | Downtown | 47.609710 | -122.323617 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 109.0 | 2 | strict | 1 | 1 | 9530788 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1655 | Downtown | 47.611437 | -122.328767 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 140.0 | 3 | moderate | 0 | 0 | 3394936 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1656 | Downtown | 47.608786 | -122.325809 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 75.0 | 2 | strict | 0 | 0 | 6882518 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1657 | Downtown | 47.606701 | -122.328703 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 129.0 | 2 | strict | 1 | 1 | 4031625 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1658 | Downtown | 47.610700 | -122.324177 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 135.0 | 2 | moderate | 0 | 0 | 4494948 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1659 | Downtown | 47.609447 | -122.325857 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 150.0 | 2 | strict | 0 | 0 | 4616695 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1660 | Downtown | 47.607688 | -122.328750 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 139.0 | 20 | strict | 1 | 1 | 4106041 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1661 | Downtown | 47.613968 | -122.325826 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 110.0 | 2 | moderate | 0 | 0 | 2532879 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1662 | Downtown | 47.611683 | -122.328738 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 179.0 | 3 | strict | 0 | 0 | 4752817 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1663 | Downtown | 47.610419 | -122.325452 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 120.0 | 1 | moderate | 0 | 0 | 6808970 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1664 | Downtown | 47.611696 | -122.329294 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | First Hill | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 245.0 | 3 | strict | 0 | 0 | 1157083 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1665 | Downtown | 47.610718 | -122.325584 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | moderate | 0 | 0 | 6226666 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1666 | Downtown | 47.609771 | -122.324133 | Apartment | 1.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 105.0 | 3 | flexible | 0 | 0 | 9151374 | 5.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1667 | Downtown | 47.613594 | -122.327840 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | First Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 209.0 | 2 | strict | 1 | 1 | 6807884 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1668 | Downtown | 47.612329 | -122.327266 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | First Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 125.0 | 1 | flexible | 0 | 0 | 1761870 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1669 | Downtown | 47.607126 | -122.320032 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 145.0 | 1 | moderate | 0 | 0 | 6949900 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1670 | Downtown | 47.606562 | -122.321298 | Apartment | 1.0 | Real Bed | a few days or more | 17.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Gym,"Elevator in B... | 115.0 | 1 | flexible | 0 | 0 | 5126446 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1671 | Downtown | 47.604405 | -122.318010 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 1 | strict | 0 | 0 | 8341720 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1672 | Downtown | 47.604879 | -122.322308 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 1 | flexible | 0 | 0 | 8355276 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1673 | Downtown | 47.603276 | -122.320390 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 6 | 1.0 | 3.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 165.0 | 3 | flexible | 0 | 0 | 7920539 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1674 | Downtown | 47.605288 | -122.320878 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 180.0 | 1 | strict | 0 | 0 | 7598743 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1675 | Downtown | 47.604813 | -122.318804 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 140.0 | 1 | flexible | 0 | 0 | 7916754 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1676 | Downtown | 47.605932 | -122.320001 | Apartment | 1.0 | Futon | within an hour | 67.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 100.0 | 1 | moderate | 0 | 0 | 7956227 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1677 | Downtown | 47.605329 | -122.319426 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Yesler Terrace | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 179.0 | 2 | strict | 0 | 0 | 4706111 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1678 | Downtown | 47.606989 | -122.319701 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Yesler Terrace | Shared room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 65.0 | 1 | flexible | 0 | 0 | 8016309 | 9.714286 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1679 | Downtown | 47.603930 | -122.323019 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Yesler Terrace | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 75.0 | 3 | strict | 0 | 0 | 5793477 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1680 | Downtown | 47.604051 | -122.322643 | Apartment | 2.0 | Real Bed | within a day | 78.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 4 | 1.0 | 1.0 | 150.0 | 1 | flexible | 0 | 0 | 2926776 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1681 | Downtown | 47.603870 | -122.318981 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 169.0 | 1 | strict | 0 | 0 | 8443258 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1682 | Downtown | 47.605710 | -122.318086 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Yesler Terrace | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 112.0 | 7 | flexible | 0 | 0 | 7577073 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1683 | Downtown | 47.604798 | -122.317382 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 68.0 | 1 | strict | 0 | 0 | 6838418 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1684 | Downtown | 47.602336 | -122.318668 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Yesler Terrace | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 1 | strict | 0 | 0 | 6852243 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1685 | Downtown | 47.605590 | -122.321055 | Condominium | 1.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Yesler Terrace | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 70.0 | 2 | flexible | 0 | 0 | 9317101 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1686 | Downtown | 47.602026 | -122.326883 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 160.0 | 1 | flexible | 0 | 0 | 6555128 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1687 | Downtown | 47.602091 | -122.325437 | Apartment | 2.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 128.0 | 1 | moderate | 0 | 0 | 6228959 | 8.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1688 | Downtown | 47.600688 | -122.334694 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Pioneer Square | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 249.0 | 1 | strict | 0 | 0 | 8446689 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1689 | Downtown | 47.600573 | -122.330865 | Apartment | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | Pioneer Square | Shared room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 50.0 | 1 | flexible | 0 | 0 | 8064351 | 9.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1690 | Downtown | 47.600895 | -122.335590 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 2 | 1.0 | 1.0 | TV,Kitchen,"Pets live on this property",Dog(s)... | 175.0 | 2 | flexible | 0 | 0 | 6662639 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1691 | Downtown | 47.600567 | -122.334305 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pioneer Square | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 250.0 | 2 | strict | 0 | 0 | 3273240 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1692 | Downtown | 47.601777 | -122.332766 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 110.0 | 2 | moderate | 1 | 1 | 5957039 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1693 | Downtown | 47.600009 | -122.335281 | Apartment | 2.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 144.0 | 1 | strict | 0 | 0 | 3449059 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1694 | Downtown | 47.595828 | -122.332346 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 149.0 | 2 | moderate | 0 | 1 | 789229 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1695 | Downtown | 47.602222 | -122.334901 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pioneer Square | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 350.0 | 2 | strict | 1 | 1 | 4008373 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1696 | Downtown | 47.602202 | -122.335063 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Pioneer Square | Entire home/apt | 2 | 1.5 | 0.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 95.0 | 1 | flexible | 0 | 0 | 5913611 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1697 | Downtown | 47.598893 | -122.333493 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pioneer Square | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 1 | moderate | 0 | 0 | 8310576 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1698 | Downtown | 47.602257 | -122.335051 | Apartment | 2.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 199.0 | 1 | strict | 0 | 0 | 4811583 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1699 | Downtown | 47.600928 | -122.332263 | Apartment | 1.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 145.0 | 1 | strict | 0 | 0 | 3333971 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1700 | Downtown | 47.601643 | -122.333577 | Condominium | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 1 | Pioneer Square | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 75.0 | 1 | flexible | 0 | 0 | 4226386 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 1701 | Downtown | 47.602794 | -122.335644 | Apartment | 3.0 | Real Bed | within a day | 64.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 350.0 | 1 | strict | 0 | 0 | 3497530 | 8.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1702 | Downtown | 47.604805 | -122.328060 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 65.0 | 1 | moderate | 0 | 0 | 8338155 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1703 | Downtown | 47.593862 | -122.334495 | Loft | 3.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Pioneer Square | Private room | 5 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 149.0 | 1 | strict | 0 | 0 | 1080097 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1704 | Downtown | 47.602271 | -122.336239 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pioneer Square | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 4593740 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1705 | Downtown | 47.602729 | -122.334547 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Pioneer Square | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 6747473 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1706 | Downtown | 47.602465 | -122.333784 | Apartment | 1.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 1 | strict | 0 | 0 | 3821663 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1707 | Downtown | 47.601028 | -122.334601 | Apartment | 2.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Pioneer Square | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 170.0 | 1 | strict | 0 | 0 | 5021969 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1708 | Downtown | 47.598942 | -122.336936 | Loft | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Pioneer Square | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 300.0 | 1 | strict | 0 | 0 | 4574039 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 1709 | West Seattle | 47.544301 | -122.385983 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Gatewood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 59.0 | 1 | flexible | 0 | 0 | 4105164 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1710 | West Seattle | 47.539740 | -122.382321 | House | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 1 | Gatewood | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Free ... | 88.0 | 2 | moderate | 0 | 0 | 2865992 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 1711 | West Seattle | 47.528955 | -122.385944 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Gatewood | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 1 | flexible | 1 | 1 | 1205666 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1712 | West Seattle | 47.542333 | -122.390629 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Gatewood | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Indoor... | 95.0 | 1 | flexible | 0 | 0 | 5651254 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1713 | West Seattle | 47.537425 | -122.377866 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Gatewood | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 125.0 | 1 | flexible | 0 | 0 | 1594412 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1714 | West Seattle | 47.533576 | -122.381203 | House | 4.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Gatewood | Entire home/apt | 6 | 1.0 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 245.0 | 3 | strict | 0 | 0 | 7717653 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1715 | West Seattle | 47.545932 | -122.382621 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Gatewood | Entire home/apt | 6 | 1.5 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 153.0 | 2 | flexible | 0 | 0 | 4808896 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1716 | West Seattle | 47.529200 | -122.385640 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Gatewood | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 2 | moderate | 0 | 0 | 7533537 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1717 | West Seattle | 47.545707 | -122.381804 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Gatewood | Private room | 5 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 65.0 | 1 | flexible | 0 | 0 | 5978216 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1718 | West Seattle | 47.543511 | -122.384719 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Gatewood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 59.0 | 1 | flexible | 0 | 0 | 6134382 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1719 | West Seattle | 47.537165 | -122.394133 | Townhouse | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Gatewood | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 45.0 | 1 | flexible | 0 | 0 | 9813684 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1720 | West Seattle | 47.544621 | -122.381054 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Gatewood | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 9846066 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1721 | West Seattle | 47.540239 | -122.387474 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Gatewood | Entire home/apt | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 75.0 | 1 | flexible | 0 | 0 | 10122924 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 1722 | West Seattle | 47.529283 | -122.381590 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Gatewood | Entire home/apt | 4 | 1.0 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 250.0 | 7 | strict | 0 | 0 | 1259305 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1723 | West Seattle | 47.538087 | -122.393117 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Gatewood | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Cable TV",Kitchen,"Free Parking on Premise... | 125.0 | 1 | moderate | 0 | 0 | 7452021 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1724 | West Seattle | 47.535701 | -122.386312 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Gatewood | Entire home/apt | 5 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 80.0 | 1 | moderate | 0 | 1 | 193836 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1725 | West Seattle | 47.542834 | -122.377759 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Gatewood | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 150.0 | 2 | flexible | 0 | 0 | 7902229 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 1726 | West Seattle | 47.535564 | -122.379975 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Gatewood | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | flexible | 0 | 0 | 3994397 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1727 | West Seattle | 47.539239 | -122.395704 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Gatewood | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 1 | strict | 0 | 0 | 6744143 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1728 | West Seattle | 47.540575 | -122.386541 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Gatewood | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 57.0 | 1 | flexible | 0 | 0 | 6554352 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1729 | West Seattle | 47.543942 | -122.386237 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Gatewood | Entire home/apt | 5 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 159.0 | 1 | moderate | 0 | 0 | 9186256 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1730 | West Seattle | 47.544058 | -122.382542 | House | 6.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Gatewood | Entire home/apt | 11 | 4.0 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 325.0 | 3 | moderate | 0 | 0 | 9219567 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1731 | West Seattle | 47.512865 | -122.379033 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Arbor Heights | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 100.0 | 2 | moderate | 0 | 0 | 6278680 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1732 | West Seattle | 47.512482 | -122.387147 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Arbor Heights | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 54.0 | 2 | moderate | 0 | 0 | 5252543 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1733 | West Seattle | 47.505469 | -122.380636 | Treehouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Arbor Heights | Private room | 1 | 1.0 | 1.0 | 55.0 | 1 | flexible | 0 | 0 | 9296887 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1734 | West Seattle | 47.516243 | -122.384600 | House | 4.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Arbor Heights | Entire home/apt | 6 | 2.0 | 3.0 | TV,Kitchen,"Free Parking on Premises","Indoor ... | 225.0 | 1 | flexible | 0 | 0 | 8431178 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1735 | West Seattle | 47.505088 | -122.378239 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Arbor Heights | Entire home/apt | 8 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 5 | strict | 0 | 1 | 353347 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1736 | West Seattle | 47.577008 | -122.411667 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 8 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 240.0 | 2 | strict | 0 | 0 | 838764 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1737 | West Seattle | 47.571891 | -122.407391 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Alki | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | moderate | 0 | 0 | 7349029 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1738 | West Seattle | 47.573708 | -122.415025 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 100.0 | 2 | strict | 0 | 0 | 8194782 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1739 | West Seattle | 47.578223 | -122.412975 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Alki | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 119.0 | 3 | strict | 0 | 0 | 8703208 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1740 | West Seattle | 47.574186 | -122.415417 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 219.0 | 2 | strict | 0 | 0 | 10339145 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1741 | West Seattle | 47.574505 | -122.412980 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Alki | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 249.0 | 4 | strict | 0 | 0 | 3251016 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1742 | West Seattle | 47.573999 | -122.411470 | House | 5.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Alki | Entire home/apt | 8 | 1.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 265.0 | 3 | strict | 1 | 1 | 7513623 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1743 | West Seattle | 47.577681 | -122.411369 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Alki | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 124.0 | 1 | flexible | 0 | 0 | 9521903 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1744 | West Seattle | 47.576517 | -122.411086 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 4 | flexible | 0 | 0 | 4379551 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1745 | West Seattle | 47.576378 | -122.408524 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Alki | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 3 | flexible | 0 | 0 | 803902 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1746 | West Seattle | 47.580739 | -122.406729 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Alki | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 40.0 | 30 | strict | 0 | 0 | 5686178 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1747 | West Seattle | 47.578652 | -122.405188 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 1 | flexible | 0 | 0 | 8617043 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1748 | West Seattle | 47.567849 | -122.409742 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Alki | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 1 | flexible | 0 | 0 | 9545664 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 1749 | West Seattle | 47.577619 | -122.413667 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 4 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 3 | flexible | 0 | 0 | 7096547 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1750 | West Seattle | 47.567392 | -122.409683 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wheelchair Accessible",Kitchen,"Pets Allow... | 90.0 | 1 | flexible | 0 | 0 | 8784239 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1751 | West Seattle | 47.581545 | -122.403709 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Alki | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | moderate | 0 | 0 | 3168651 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1752 | West Seattle | 47.576853 | -122.416362 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Alki | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 269.0 | 2 | flexible | 0 | 0 | 7776701 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1753 | West Seattle | 47.570294 | -122.402127 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 8 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 325.0 | 1 | flexible | 0 | 0 | 5862552 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1754 | West Seattle | 47.578419 | -122.407121 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 7 | 1.5 | 3.0 | 350.0 | 2 | flexible | 0 | 0 | 9696532 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1755 | West Seattle | 47.569349 | -122.403345 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 1 | flexible | 0 | 0 | 6412566 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1756 | West Seattle | 47.575689 | -122.415455 | Camper/RV | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Alki | Private room | 3 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Air C... | 120.0 | 1 | moderate | 0 | 0 | 6578147 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1757 | West Seattle | 47.581604 | -122.404366 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 79.0 | 2 | strict | 0 | 0 | 4022127 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1758 | West Seattle | 47.576131 | -122.412235 | House | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Alki | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 130.0 | 3 | strict | 0 | 0 | 3265292 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1759 | West Seattle | 47.574003 | -122.417219 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Alki | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 129.0 | 1 | strict | 0 | 0 | 3505739 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1760 | West Seattle | 47.574940 | -122.404551 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Alki | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 399.0 | 3 | flexible | 0 | 0 | 9174507 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1761 | West Seattle | 47.573422 | -122.410963 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Alki | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 4 | moderate | 0 | 0 | 9796540 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1762 | West Seattle | 47.577041 | -122.410487 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 0.0 | 0 | Alki | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 42.0 | 1 | moderate | 0 | 0 | 3005854 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1763 | West Seattle | 47.568898 | -122.399159 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 95.0 | 1 | moderate | 0 | 0 | 3898692 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1764 | West Seattle | 47.578454 | -122.407143 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Alki | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 109.0 | 1 | strict | 0 | 0 | 7502246 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1765 | West Seattle | 47.565984 | -122.399707 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Alki | Entire home/apt | 8 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 225.0 | 1 | strict | 0 | 0 | 6002165 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1766 | West Seattle | 47.577038 | -122.413802 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 8 | 2.0 | 3.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 235.0 | 2 | moderate | 0 | 0 | 4887845 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1767 | West Seattle | 47.580767 | -122.403710 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 4 | 1.5 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 85.0 | 2 | moderate | 0 | 0 | 8132007 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 1768 | West Seattle | 47.588760 | -122.394925 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 1 | flexible | 0 | 0 | 10183490 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1769 | West Seattle | 47.574665 | -122.409822 | Townhouse | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Alki | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 218.0 | 2 | moderate | 0 | 0 | 8170683 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1770 | West Seattle | 47.577933 | -122.410145 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Alki | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 120.0 | 1 | moderate | 0 | 0 | 5229971 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 |
| 1771 | West Seattle | 47.561296 | -122.400262 | Loft | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Alki | Private room | 2 | 2.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 225.0 | 1 | moderate | 0 | 0 | 4597013 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1772 | West Seattle | 47.584647 | -122.398800 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 3 | strict | 0 | 0 | 3818746 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1773 | West Seattle | 47.564997 | -122.406430 | Townhouse | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Alki | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 1 | strict | 0 | 0 | 6644854 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1774 | West Seattle | 47.568419 | -122.406617 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Alki | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | strict | 1 | 1 | 117165 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1775 | West Seattle | 47.574469 | -122.403168 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Alki | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 79.0 | 3 | flexible | 0 | 0 | 5015262 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1776 | West Seattle | 47.568953 | -122.407598 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 300.0 | 5 | strict | 1 | 1 | 3868844 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1777 | West Seattle | 47.581261 | -122.405818 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Alki | Entire home/apt | 2 | 1.0 | 1.0 | TV,Kitchen,Heating,"Smoke Detector","Carbon Mo... | 59.0 | 2 | strict | 0 | 0 | 7455068 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1778 | West Seattle | 47.579396 | -122.392760 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North Admiral | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 69.0 | 1 | moderate | 0 | 0 | 8102349 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
| 1779 | West Seattle | 47.586697 | -122.387437 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North Admiral | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 180.0 | 1 | flexible | 0 | 0 | 6694276 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 |
| 1780 | West Seattle | 47.582638 | -122.399353 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 7 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 3 | strict | 0 | 0 | 8373832 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1781 | West Seattle | 47.585634 | -122.379333 | House | 4.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | North Admiral | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 219.0 | 2 | strict | 1 | 1 | 426089 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1782 | West Seattle | 47.581278 | -122.385085 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 70.0 | 1 | flexible | 0 | 0 | 7561333 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1783 | West Seattle | 47.584239 | -122.386892 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | North Admiral | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 140.0 | 2 | strict | 0 | 0 | 2638086 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1784 | West Seattle | 47.581684 | -122.374445 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 4 | 2.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 200.0 | 2 | moderate | 1 | 1 | 10121329 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1785 | West Seattle | 47.577834 | -122.389285 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Admiral | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Free ... | 54.0 | 2 | flexible | 0 | 0 | 5324459 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 |
| 1786 | West Seattle | 47.573266 | -122.374361 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Admiral | Private room | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 60.0 | 1 | flexible | 0 | 0 | 233502 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 1787 | West Seattle | 47.572892 | -122.385855 | Bed & Breakfast | 2.0 | Real Bed | within an hour | 88.0 | 100.0 | 1 | North Admiral | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 66.0 | 1 | flexible | 0 | 0 | 7651148 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1788 | West Seattle | 47.582392 | -122.394478 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Admiral | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 79.0 | 2 | moderate | 0 | 0 | 86185 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
| 1789 | West Seattle | 47.586756 | -122.391982 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 195.0 | 2 | strict | 0 | 0 | 2522091 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1790 | West Seattle | 47.579706 | -122.379232 | House | 1.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | North Admiral | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 105.0 | 2 | moderate | 0 | 0 | 7665392 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1791 | West Seattle | 47.580449 | -122.396871 | House | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | North Admiral | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | moderate | 0 | 0 | 1000883 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1792 | West Seattle | 47.584037 | -122.386670 | Yurt | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Gym,"Pets... | 100.0 | 1 | moderate | 0 | 0 | 7563243 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1793 | West Seattle | 47.581433 | -122.394109 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 93.0 | 3 | moderate | 0 | 1 | 251922 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1794 | West Seattle | 47.578556 | -122.394846 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 85.0 | 2 | moderate | 0 | 0 | 1225820 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1795 | West Seattle | 47.580029 | -122.390251 | Chalet | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 135.0 | 4 | moderate | 0 | 1 | 353110 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 1796 | West Seattle | 47.582575 | -122.384955 | Apartment | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 7 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 2 | flexible | 0 | 0 | 4384800 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1797 | West Seattle | 47.582951 | -122.387012 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 1 | moderate | 0 | 0 | 8538630 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1798 | West Seattle | 47.573566 | -122.387007 | Bed & Breakfast | 2.0 | Real Bed | within an hour | 88.0 | 100.0 | 1 | North Admiral | Private room | 4 | 2.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 129.0 | 1 | strict | 0 | 0 | 5751177 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1799 | West Seattle | 47.574773 | -122.381852 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Admiral | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 2 | moderate | 0 | 0 | 3124961 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1800 | West Seattle | 47.571207 | -122.392049 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Admiral | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 3 | strict | 0 | 0 | 6436772 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1801 | West Seattle | 47.571353 | -122.375580 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 120.0 | 2 | flexible | 0 | 0 | 7499506 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1802 | West Seattle | 47.573324 | -122.395511 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North Admiral | Entire home/apt | 5 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 5 | strict | 0 | 0 | 3403858 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1803 | West Seattle | 47.573018 | -122.387447 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 69.0 | 3 | moderate | 0 | 0 | 746380 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1804 | West Seattle | 47.584683 | -122.386212 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North Admiral | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 2 | strict | 0 | 0 | 7229743 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1805 | West Seattle | 47.572900 | -122.385938 | Townhouse | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 3 | moderate | 0 | 0 | 7547611 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1806 | West Seattle | 47.574638 | -122.395033 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Admiral | Private room | 7 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 81.0 | 1 | strict | 0 | 0 | 2906694 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1807 | West Seattle | 47.587231 | -122.380016 | Condominium | 3.0 | Real Bed | within an hour | 75.0 | 100.0 | 0 | North Admiral | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 495.0 | 2 | strict | 0 | 0 | 7454026 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1808 | West Seattle | 47.576168 | -122.371581 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 2 | flexible | 0 | 0 | 4651974 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1809 | West Seattle | 47.572113 | -122.385917 | House | 1.0 | Real Bed | within an hour | 88.0 | 100.0 | 1 | North Admiral | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 101.0 | 1 | flexible | 0 | 0 | 6847052 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1810 | West Seattle | 47.573562 | -122.390993 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 3 | strict | 0 | 0 | 1538865 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1811 | West Seattle | 47.571903 | -122.378932 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | North Admiral | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | moderate | 0 | 0 | 3061918 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1812 | West Seattle | 47.572744 | -122.381833 | House | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | North Admiral | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 185.0 | 3 | moderate | 0 | 0 | 7773851 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1813 | West Seattle | 47.582741 | -122.398084 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 1 | strict | 0 | 0 | 2536507 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1814 | West Seattle | 47.573427 | -122.371746 | Condominium | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Admiral | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 99.0 | 2 | flexible | 0 | 0 | 8409773 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1815 | West Seattle | 47.576582 | -122.388676 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 3 | moderate | 0 | 0 | 7131797 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1816 | West Seattle | 47.572095 | -122.391110 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 45.0 | 14 | flexible | 0 | 0 | 10331249 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 1817 | West Seattle | 47.588938 | -122.382144 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Private room | 6 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 130.0 | 1 | moderate | 0 | 0 | 9883943 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1818 | West Seattle | 47.584951 | -122.381617 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | moderate | 0 | 0 | 6956938 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1819 | West Seattle | 47.580448 | -122.397792 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 2 | flexible | 0 | 0 | 7869223 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1820 | West Seattle | 47.591141 | -122.386445 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 7 | 2.5 | 3.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 225.0 | 2 | moderate | 0 | 0 | 7278583 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1821 | West Seattle | 47.582740 | -122.381073 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Admiral | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | moderate | 0 | 0 | 6796246 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1822 | West Seattle | 47.575868 | -122.398428 | Cabin | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | North Admiral | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Free Parking ... | 90.0 | 1 | flexible | 0 | 0 | 5991734 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1823 | West Seattle | 47.572044 | -122.386162 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Breakfast,Heati... | 79.0 | 3 | moderate | 0 | 0 | 6515046 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 1824 | West Seattle | 47.573059 | -122.374399 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Admiral | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 100.0 | 1 | flexible | 0 | 0 | 8538420 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1825 | West Seattle | 47.578059 | -122.382461 | House | 5.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | North Admiral | Entire home/apt | 6 | 2.0 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 225.0 | 2 | moderate | 0 | 0 | 7800143 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1826 | West Seattle | 47.572261 | -122.387899 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 88.0 | 100.0 | 1 | North Admiral | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 299.0 | 1 | flexible | 0 | 0 | 7651602 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1827 | Other neighborhoods | 47.697360 | -122.376222 | Bed & Breakfast | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 70.0 | 1 | moderate | 0 | 0 | 461567 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1828 | Other neighborhoods | 47.698554 | -122.369271 | Townhouse | 1.0 | Real Bed | within a few hours | 78.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 28.0 | 1 | flexible | 0 | 0 | 9736940 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1829 | Other neighborhoods | 47.699898 | -122.366142 | Bed & Breakfast | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 4.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 2 | flexible | 1 | 1 | 210316 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1830 | Other neighborhoods | 47.700061 | -122.374372 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Crown Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 2 | strict | 0 | 0 | 4581124 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1831 | Other neighborhoods | 47.691794 | -122.368961 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 41.0 | 13 | moderate | 0 | 0 | 6403104 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1832 | Other neighborhoods | 47.693144 | -122.368079 | House | 1.0 | Real Bed | within an hour | 88.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 42.0 | 1 | moderate | 0 | 0 | 7071331 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1833 | Other neighborhoods | 47.693355 | -122.373176 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 6 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | strict | 0 | 0 | 3883137 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1834 | Other neighborhoods | 47.699206 | -122.373172 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Crown Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 100.0 | 1 | flexible | 0 | 0 | 9858690 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1835 | Other neighborhoods | 47.703482 | -122.369842 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Crown Hill | Private room | 1 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 45.0 | 2 | flexible | 0 | 0 | 6657574 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1836 | Other neighborhoods | 47.701551 | -122.366511 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 3.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 2 | flexible | 1 | 1 | 566435 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1837 | Other neighborhoods | 47.691028 | -122.368155 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 170.0 | 3 | strict | 0 | 0 | 226495 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1838 | Other neighborhoods | 47.705141 | -122.371213 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 119.0 | 1 | moderate | 0 | 0 | 9394485 | 4.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1839 | Other neighborhoods | 47.692911 | -122.378495 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | flexible | 0 | 0 | 8116504 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1840 | Other neighborhoods | 47.697571 | -122.375875 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Crown Hill | Entire home/apt | 3 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 114.0 | 1 | moderate | 0 | 1 | 80188 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1841 | Other neighborhoods | 47.693446 | -122.366803 | House | 2.0 | Real Bed | within an hour | 88.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 1 | flexible | 0 | 0 | 9696286 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1842 | Other neighborhoods | 47.700363 | -122.370906 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Crown Hill | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 68.0 | 1 | flexible | 0 | 0 | 7788695 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 1843 | Other neighborhoods | 47.690956 | -122.369720 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Crown Hill | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 275.0 | 3 | strict | 0 | 0 | 1289082 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1844 | Other neighborhoods | 47.693976 | -122.371654 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 35.0 | 1 | strict | 0 | 0 | 3656508 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1845 | Other neighborhoods | 47.693065 | -122.367351 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Crown Hill | Private room | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 75.0 | 1 | flexible | 0 | 0 | 8119192 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 1846 | Other neighborhoods | 47.699962 | -122.375511 | House | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Crown Hill | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 3 | strict | 0 | 0 | 5487653 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1847 | Other neighborhoods | 47.702954 | -122.368612 | Bed & Breakfast | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Crown Hill | Private room | 2 | 3.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 2 | flexible | 1 | 1 | 493591 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1848 | West Seattle | 47.556701 | -122.384974 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | strict | 0 | 1 | 9534 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1849 | West Seattle | 47.558044 | -122.385788 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 75.0 | 2 | moderate | 0 | 0 | 6902752 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 1850 | West Seattle | 47.552263 | -122.381015 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fairmount Park | Private room | 3 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Free ... | 72.0 | 1 | moderate | 0 | 0 | 7902569 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 1851 | West Seattle | 47.555389 | -122.384739 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 165.0 | 3 | strict | 0 | 1 | 9531 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1852 | West Seattle | 47.554483 | -122.378805 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | flexible | 0 | 0 | 5759668 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1853 | West Seattle | 47.555382 | -122.386223 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 0 | 0 | 17951 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1854 | West Seattle | 47.553090 | -122.378715 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 4030640 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1855 | West Seattle | 47.547557 | -122.378331 | House | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 3 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 120.0 | 3 | strict | 1 | 1 | 4395654 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1856 | West Seattle | 47.562976 | -122.378545 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fairmount Park | Private room | 2 | 0.5 | 1.0 | TV,"Cable TV",Internet,Heating,Washer,Dryer,"S... | 75.0 | 1 | moderate | 0 | 0 | 6759046 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 1857 | West Seattle | 47.555520 | -122.385482 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fairmount Park | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 299.0 | 2 | flexible | 0 | 0 | 10020782 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1858 | West Seattle | 47.548995 | -122.383452 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fairmount Park | Entire home/apt | 4 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 1 | 1 | 1252147 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1859 | West Seattle | 47.555969 | -122.383971 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 125.0 | 3 | strict | 0 | 0 | 5652705 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1860 | West Seattle | 47.551768 | -122.385842 | House | 4.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Fairmount Park | Entire home/apt | 8 | 2.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 3 | flexible | 0 | 0 | 9410043 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1861 | West Seattle | 47.556632 | -122.377204 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Private room | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | strict | 0 | 0 | 46022 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1862 | West Seattle | 47.547271 | -122.378719 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 119.0 | 2 | strict | 0 | 0 | 4996554 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1863 | West Seattle | 47.550024 | -122.381231 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fairmount Park | Entire home/apt | 8 | 2.5 | 5.0 | TV,"Cable TV","Wireless Internet",Kitchen,Gym,... | 370.0 | 1 | strict | 0 | 0 | 692080 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1864 | West Seattle | 47.555944 | -122.379947 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 12 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 117.0 | 1 | strict | 0 | 0 | 153967 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1865 | West Seattle | 47.553357 | -122.379001 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 1 | moderate | 0 | 0 | 9328278 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1866 | West Seattle | 47.552194 | -122.377954 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | strict | 0 | 0 | 8566242 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1867 | West Seattle | 47.564328 | -122.373746 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 129.0 | 2 | strict | 0 | 0 | 6567683 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 1868 | West Seattle | 47.558904 | -122.377511 | House | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 3 | moderate | 0 | 0 | 6794702 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1869 | West Seattle | 47.557318 | -122.377782 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 65.0 | 1 | moderate | 0 | 0 | 7746170 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1870 | West Seattle | 47.547787 | -122.378002 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 4 | strict | 0 | 0 | 157939 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1871 | West Seattle | 47.548317 | -122.386458 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 109.0 | 1 | moderate | 0 | 0 | 7459637 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1872 | West Seattle | 47.556291 | -122.377002 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 88.0 | 2 | moderate | 0 | 0 | 6079131 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 1873 | West Seattle | 47.557670 | -122.379010 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 75.0 | 1 | strict | 0 | 0 | 158953 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1874 | West Seattle | 47.555565 | -122.377040 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fairmount Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 1 | flexible | 0 | 0 | 8342968 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1875 | West Seattle | 47.555541 | -122.382754 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Fairmount Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 75.0 | 1 | flexible | 0 | 0 | 6512979 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1876 | West Seattle | 47.559256 | -122.384556 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fairmount Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 136.0 | 2 | flexible | 0 | 0 | 7886656 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1877 | West Seattle | 47.566393 | -122.378146 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 139.0 | 2 | strict | 0 | 0 | 4378803 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1878 | West Seattle | 47.560736 | -122.382494 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 79.0 | 1 | moderate | 0 | 0 | 7791010 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 1879 | West Seattle | 47.567444 | -122.386342 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 2 | moderate | 0 | 0 | 6452927 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1880 | West Seattle | 47.560990 | -122.384932 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 55.0 | 1 | strict | 0 | 0 | 8066883 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 1881 | West Seattle | 47.567816 | -122.376162 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Genesee | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 200.0 | 1 | moderate | 0 | 0 | 8209686 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1882 | West Seattle | 47.564840 | -122.388582 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 1 | moderate | 0 | 0 | 8017832 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1883 | West Seattle | 47.563553 | -122.386789 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 1 | moderate | 0 | 0 | 7988300 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1884 | West Seattle | 47.569538 | -122.392832 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 85.0 | 1 | moderate | 0 | 0 | 2818292 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1885 | West Seattle | 47.562605 | -122.396702 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 39.0 | 1 | flexible | 0 | 0 | 4910140 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1886 | West Seattle | 47.566895 | -122.392135 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 75.0 | 1 | moderate | 0 | 0 | 9110730 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 1887 | West Seattle | 47.560476 | -122.393641 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 75.0 | 1 | flexible | 0 | 0 | 6762958 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1888 | West Seattle | 47.563712 | -122.381327 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 3 | flexible | 0 | 0 | 8503556 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1889 | West Seattle | 47.567241 | -122.386387 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 5 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 215.0 | 2 | strict | 0 | 0 | 6448099 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1890 | West Seattle | 47.564125 | -122.378507 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Genesee | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 1 | moderate | 0 | 0 | 4564730 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1891 | West Seattle | 47.566429 | -122.380842 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Genesee | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 165.0 | 3 | strict | 0 | 0 | 50233 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1892 | West Seattle | 47.562723 | -122.395238 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Genesee | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 165.0 | 4 | strict | 0 | 0 | 3402376 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1893 | West Seattle | 47.565704 | -122.375110 | House | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Genesee | Private room | 2 | 0.5 | 1.0 | TV,Kitchen,"Free Parking on Premises","Pets li... | 55.0 | 1 | flexible | 0 | 0 | 8782852 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1894 | West Seattle | 47.565238 | -122.387235 | Townhouse | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 10 | 1.5 | 3.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 150.0 | 2 | strict | 0 | 0 | 9098494 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1895 | West Seattle | 47.564603 | -122.377047 | House | 6.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 10 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 249.0 | 2 | strict | 0 | 0 | 6977095 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1896 | West Seattle | 47.567595 | -122.381377 | House | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.5 | 1.0 | "Cable TV",Internet,"Wireless Internet","Air C... | 51.0 | 2 | moderate | 0 | 0 | 6748502 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1897 | West Seattle | 47.566185 | -122.379008 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 129.0 | 2 | strict | 0 | 0 | 6823837 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1898 | West Seattle | 47.570001 | -122.385905 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 79.0 | 1 | flexible | 0 | 0 | 9298045 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1899 | West Seattle | 47.561364 | -122.385107 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 1 | moderate | 0 | 0 | 7988436 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1900 | West Seattle | 47.560370 | -122.393038 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 49.0 | 1 | flexible | 0 | 0 | 9615941 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1901 | West Seattle | 47.567258 | -122.382213 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 7 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 180.0 | 2 | flexible | 0 | 0 | 8631419 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1902 | West Seattle | 47.561374 | -122.388438 | Apartment | 1.0 | Pull-out Sofa | within a day | 100.0 | 100.0 | 0 | Genesee | Shared room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 30.0 | 1 | flexible | 0 | 0 | 8919070 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1903 | West Seattle | 47.561646 | -122.397073 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 7 | 1.5 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 250.0 | 4 | strict | 0 | 0 | 7836953 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1904 | West Seattle | 47.566963 | -122.383378 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Genesee | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 3281072 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1905 | West Seattle | 47.564950 | -122.397977 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Genesee | Entire home/apt | 8 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 375.0 | 1 | flexible | 0 | 0 | 10252110 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1906 | West Seattle | 47.567048 | -122.386151 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 56.0 | 2 | moderate | 0 | 0 | 5958674 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1907 | West Seattle | 47.568301 | -122.376030 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 300.0 | 1 | flexible | 0 | 0 | 8307502 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1908 | West Seattle | 47.567227 | -122.385086 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Genesee | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 45.0 | 2 | moderate | 0 | 0 | 5958194 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1909 | West Seattle | 47.564019 | -122.388856 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Genesee | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 1 | moderate | 0 | 0 | 4121334 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1910 | West Seattle | 47.562801 | -122.387054 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Genesee | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 3 | strict | 1 | 1 | 598023 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1911 | Interbay | 47.639723 | -122.376422 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Interbay | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Heating... | 53.0 | 2 | strict | 1 | 1 | 6958603 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 1912 | Interbay | 47.635773 | -122.388619 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Interbay | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 75.0 | 2 | flexible | 0 | 0 | 7390195 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1913 | Interbay | 47.637080 | -122.386179 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Interbay | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 1 | flexible | 0 | 0 | 4271174 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1914 | Interbay | 47.635023 | -122.389695 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Interbay | Private room | 1 | 2.5 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 90.0 | 4 | moderate | 0 | 0 | 3237501 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1915 | Interbay | 47.632885 | -122.377170 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Interbay | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 69.0 | 1 | moderate | 0 | 0 | 6438013 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1916 | Interbay | 47.647383 | -122.378049 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Interbay | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 2 | moderate | 0 | 0 | 10309898 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1917 | Interbay | 47.661186 | -122.385344 | Boat | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Interbay | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Breakfast,"Pets... | 95.0 | 2 | strict | 1 | 1 | 2134911 | 8.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1918 | Interbay | 47.650062 | -122.377384 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Interbay | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 50.0 | 1 | flexible | 0 | 0 | 5002964 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1919 | Interbay | 47.639200 | -122.386616 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 1 | Interbay | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | strict | 1 | 1 | 6780615 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1920 | Interbay | 47.642362 | -122.377509 | House | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Interbay | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | strict | 0 | 0 | 2586642 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1921 | Interbay | 47.638343 | -122.386192 | Condominium | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Interbay | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 1 | moderate | 0 | 0 | 9490093 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1922 | Other neighborhoods | 47.595772 | -122.327316 | Apartment | 1.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Industrial District | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Wash... | 150.0 | 1 | strict | 0 | 0 | 1815472 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1923 | Other neighborhoods | 47.559779 | -122.323603 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Industrial District | Shared room | 4 | 1.0 | 1.0 | Kitchen,Heating,"Smoke Detector","Fire Extingu... | 25.0 | 1 | flexible | 0 | 0 | 8566475 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1924 | Other neighborhoods | 47.580007 | -122.326628 | Camper/RV | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Industrial District | Entire home/apt | 4 | 0.0 | 0.0 | "Smoke Detector","Carbon Monoxide Detector","F... | 265.0 | 1 | strict | 0 | 0 | 10205366 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 1925 | Other neighborhoods | 47.577590 | -122.319566 | Loft | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Industrial District | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 320.0 | 3 | moderate | 0 | 0 | 2919571 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1926 | Other neighborhoods | 47.576687 | -122.321928 | Other | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Industrial District | Private room | 4 | 2.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 150.0 | 1 | flexible | 0 | 0 | 1484651 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1927 | Beacon Hill | 47.554272 | -122.312649 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 3 | moderate | 0 | 0 | 6327506 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1928 | Beacon Hill | 47.542964 | -122.289047 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mid-Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 45.0 | 1 | strict | 0 | 0 | 3544964 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1929 | Beacon Hill | 47.544828 | -122.299627 | House | 2.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 2 | moderate | 0 | 0 | 7763298 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1930 | Beacon Hill | 47.544438 | -122.301200 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 50.0 | 2 | moderate | 0 | 0 | 5873892 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1931 | Beacon Hill | 47.560349 | -122.314023 | House | 2.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 10 | strict | 1 | 1 | 41401 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1932 | Beacon Hill | 47.560822 | -122.295637 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 1 | 2.0 | 1.0 | "Wireless Internet",Heating,Washer,Dryer,"Smok... | 35.0 | 1 | moderate | 0 | 0 | 6646985 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1933 | Beacon Hill | 47.560769 | -122.294315 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 55.0 | 1 | moderate | 0 | 0 | 3582883 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1934 | Beacon Hill | 47.561087 | -122.296161 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 1 | 2.0 | 1.0 | "Wireless Internet",Washer,Dryer,"Smoke Detect... | 35.0 | 1 | moderate | 0 | 0 | 6939472 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1935 | Beacon Hill | 47.552010 | -122.305869 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 35.0 | 2 | moderate | 0 | 0 | 4518037 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 1936 | Beacon Hill | 47.557275 | -122.313345 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 58.0 | 2 | moderate | 0 | 0 | 3951768 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1937 | Beacon Hill | 47.554216 | -122.308603 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 170.0 | 2 | strict | 0 | 0 | 7007598 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1938 | Beacon Hill | 47.557082 | -122.309203 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 2 | flexible | 0 | 0 | 7800238 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1939 | Beacon Hill | 47.544544 | -122.301387 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 38.0 | 2 | moderate | 0 | 0 | 4581256 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1940 | Beacon Hill | 47.553681 | -122.317805 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 3 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 104.0 | 3 | flexible | 0 | 0 | 4163851 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1941 | Beacon Hill | 47.555603 | -122.300855 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 10 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wheelchair Accessible"... | 150.0 | 3 | moderate | 1 | 1 | 479653 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1942 | Beacon Hill | 47.559201 | -122.294479 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Heating,Washer,Dryer,Essen... | 55.0 | 1 | moderate | 0 | 0 | 6647442 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1943 | Beacon Hill | 47.555516 | -122.303323 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 130.0 | 3 | flexible | 0 | 0 | 7247518 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1944 | Beacon Hill | 47.542991 | -122.299648 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 38.0 | 2 | moderate | 0 | 0 | 6831239 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1945 | Beacon Hill | 47.552566 | -122.304350 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 122.0 | 2 | strict | 0 | 0 | 108765 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 1946 | Beacon Hill | 47.543828 | -122.302765 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 2 | flexible | 0 | 0 | 8174943 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1947 | Beacon Hill | 47.554018 | -122.317553 | Apartment | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Mid-Beacon Hill | Entire home/apt | 6 | 1.0 | 3.0 | Internet,"Wireless Internet","Free Parking on ... | 109.0 | 2 | moderate | 0 | 0 | 6360895 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 1948 | Beacon Hill | 47.561376 | -122.317411 | House | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 1 | strict | 0 | 0 | 6363765 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1949 | Beacon Hill | 47.565834 | -122.314923 | Cabin | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | moderate | 0 | 0 | 6183330 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1950 | Beacon Hill | 47.552195 | -122.305177 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 45.0 | 1 | moderate | 0 | 0 | 2612025 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 1951 | Beacon Hill | 47.549869 | -122.292549 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 80.0 | 1 | moderate | 0 | 0 | 7630155 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 |
| 1952 | Beacon Hill | 47.555307 | -122.303281 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 3 | flexible | 0 | 0 | 8118346 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1953 | Beacon Hill | 47.547626 | -122.304134 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 99.0 | 2 | strict | 0 | 0 | 6105021 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1954 | Beacon Hill | 47.544985 | -122.300899 | House | 1.0 | Real Bed | within an hour | 94.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 58.0 | 2 | moderate | 0 | 0 | 10299108 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 1955 | Beacon Hill | 47.547124 | -122.301395 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Mid-Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Heating,"Smoke Detector... | 69.0 | 2 | moderate | 0 | 0 | 6626493 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 1956 | Beacon Hill | 47.549456 | -122.316577 | Other | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mid-Beacon Hill | Private room | 2 | 3.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 65.0 | 2 | moderate | 1 | 1 | 573942 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 1957 | Beacon Hill | 47.546171 | -122.308095 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | South Beacon Hill | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 38.0 | 2 | flexible | 0 | 0 | 9314106 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1958 | Beacon Hill | 47.535245 | -122.284865 | Townhouse | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | South Beacon Hill | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 60.0 | 1 | moderate | 0 | 0 | 9814376 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 1959 | Beacon Hill | 47.532803 | -122.289150 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | South Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 60.0 | 1 | moderate | 0 | 0 | 9564093 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 |
| 1960 | Beacon Hill | 47.525662 | -122.281156 | House | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | South Beacon Hill | Entire home/apt | 8 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 175.0 | 1 | strict | 0 | 0 | 1652107 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1961 | Other neighborhoods | 47.698613 | -122.363442 | House | 0.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Greenwood | Private room | 4 | 0.0 | 1.0 | 280.0 | 1 | flexible | 0 | 0 | 609252 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1962 | Other neighborhoods | 47.689318 | -122.365136 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Private room | 5 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 80.0 | 2 | moderate | 0 | 0 | 942490 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 |
| 1963 | Other neighborhoods | 47.698210 | -122.361719 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 85.0 | 2 | moderate | 0 | 0 | 8653722 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 1964 | Other neighborhoods | 47.694444 | -122.346594 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 215.0 | 5 | strict | 0 | 0 | 7562591 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1965 | Other neighborhoods | 47.690222 | -122.354371 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,Kitchen,Heating,Washer,... | 120.0 | 1 | flexible | 0 | 0 | 9636238 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1966 | Other neighborhoods | 47.704848 | -122.344887 | Apartment | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Greenwood | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 3 | strict | 0 | 0 | 823989 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1967 | Other neighborhoods | 47.686443 | -122.350047 | Bungalow | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Indoor Fireplace"... | 90.0 | 1 | flexible | 0 | 0 | 7596934 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 1968 | Other neighborhoods | 47.684387 | -122.360870 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 6832592 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1969 | Other neighborhoods | 47.694574 | -122.357959 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 105.0 | 1 | flexible | 0 | 0 | 3922853 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1970 | Other neighborhoods | 47.702910 | -122.361873 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 6 | 2.5 | 3.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 98.0 | 13 | flexible | 0 | 0 | 9475641 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1971 | Other neighborhoods | 47.703412 | -122.354803 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 44.0 | 1 | strict | 0 | 0 | 8718936 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 1972 | Other neighborhoods | 47.700483 | -122.346562 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 34.0 | 1 | moderate | 0 | 0 | 9075558 | 6.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 1973 | Other neighborhoods | 47.691093 | -122.364640 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Greenwood | Private room | 1 | 2.5 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dryer | 50.0 | 5 | moderate | 0 | 0 | 671828 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1974 | Other neighborhoods | 47.689269 | -122.354140 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 85.0 | 2 | moderate | 0 | 0 | 6660186 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 1975 | Other neighborhoods | 47.699419 | -122.348312 | Chalet | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 1 | 0.0 | 1.0 | TV,"Free Parking on Premises","Pets live on th... | 62.0 | 1 | flexible | 0 | 0 | 716829 | 6.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 1976 | Other neighborhoods | 47.694308 | -122.346736 | House | 1.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 49.0 | 1 | moderate | 0 | 0 | 3916050 | 8.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
| 1977 | Other neighborhoods | 47.694619 | -122.360636 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 0.5 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 50.0 | 1 | flexible | 0 | 0 | 2187906 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 1978 | Other neighborhoods | 47.696841 | -122.349080 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 50.0 | 1 | flexible | 0 | 0 | 9091301 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1979 | Other neighborhoods | 47.698359 | -122.349488 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 70.0 | 1 | flexible | 0 | 0 | 9048584 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |
| 1980 | Other neighborhoods | 47.694904 | -122.361063 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 40.0 | 1 | flexible | 0 | 0 | 7382368 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 1981 | Other neighborhoods | 47.692394 | -122.353253 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 40.0 | 1 | flexible | 0 | 0 | 5278993 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 1982 | Other neighborhoods | 47.703919 | -122.354429 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 38.0 | 1 | strict | 0 | 0 | 8717758 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 1983 | Other neighborhoods | 47.701867 | -122.345236 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Hot Tub"... | 26.0 | 1 | flexible | 0 | 0 | 10299195 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 1984 | Other neighborhoods | 47.693146 | -122.362259 | Tent | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Shared room | 2 | 1.0 | 1.0 | 25.0 | 1 | moderate | 0 | 0 | 7064681 | 9.857143 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 1985 | Other neighborhoods | 47.703299 | -122.360732 | House | 1.0 | Futon | within a day | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 2.0 | 1.0 | Kitchen,"Pets live on this property",Cat(s),"I... | 49.0 | 2 | moderate | 0 | 0 | 1935439 | 8.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1986 | Other neighborhoods | 47.704282 | -122.346218 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 6 | 1.5 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 129.0 | 1 | strict | 0 | 0 | 5931372 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1987 | Other neighborhoods | 47.686384 | -122.345106 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 5 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 175.0 | 2 | moderate | 0 | 0 | 1984692 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 1988 | Other neighborhoods | 47.694002 | -122.359953 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 42.0 | 1 | flexible | 0 | 0 | 4360604 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1989 | Other neighborhoods | 47.695106 | -122.349616 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 126.0 | 2 | strict | 0 | 0 | 9712348 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 1990 | Other neighborhoods | 47.683965 | -122.357925 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 6 | 3.5 | 3.0 | TV,"Wireless Internet",Kitchen,"Indoor Firepla... | 299.0 | 1 | strict | 0 | 0 | 7151107 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1991 | Other neighborhoods | 47.698744 | -122.348347 | House | 2.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | Greenwood | Private room | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 2 | flexible | 0 | 0 | 7935437 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1992 | Other neighborhoods | 47.691250 | -122.361178 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 175.0 | 4 | moderate | 0 | 0 | 6364753 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 1993 | Other neighborhoods | 47.691077 | -122.356448 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 7952032 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1994 | Other neighborhoods | 47.692512 | -122.364662 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 120.0 | 1 | strict | 0 | 0 | 6166307 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 1995 | Other neighborhoods | 47.688060 | -122.352017 | House | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet" | 42.0 | 1 | flexible | 0 | 0 | 3282760 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
| 1996 | Other neighborhoods | 47.685548 | -122.351421 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Pets live on ... | 56.0 | 2 | strict | 0 | 0 | 6411259 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 1997 | Other neighborhoods | 47.689420 | -122.362742 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 55.0 | 5 | moderate | 0 | 0 | 670262 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 1998 | Other neighborhoods | 47.698496 | -122.346044 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 55.0 | 1 | moderate | 0 | 0 | 8411663 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 1999 | Other neighborhoods | 47.686603 | -122.348541 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 235.0 | 2 | moderate | 0 | 0 | 6926511 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2000 | Other neighborhoods | 47.694746 | -122.358074 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | flexible | 0 | 0 | 9908591 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2001 | Other neighborhoods | 47.697225 | -122.348762 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Free ... | 60.0 | 3 | moderate | 0 | 0 | 5640722 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2002 | Other neighborhoods | 47.704789 | -122.346402 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 67.0 | 1 | strict | 0 | 0 | 6701018 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2003 | Other neighborhoods | 47.693937 | -122.363071 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 95.0 | 1 | moderate | 0 | 0 | 3653575 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2004 | Other neighborhoods | 47.701766 | -122.354435 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 115.0 | 2 | moderate | 0 | 0 | 7647221 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2005 | Other neighborhoods | 47.686351 | -122.353156 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | strict | 0 | 0 | 3637180 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2006 | Other neighborhoods | 47.698621 | -122.346336 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 199.0 | 3 | strict | 0 | 0 | 6215199 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2007 | Other neighborhoods | 47.687966 | -122.350056 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Smoki... | 86.0 | 2 | strict | 0 | 0 | 714043 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2008 | Other neighborhoods | 47.699809 | -122.355518 | House | 4.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Greenwood | Entire home/apt | 7 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 175.0 | 1 | strict | 0 | 0 | 3890990 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2009 | Other neighborhoods | 47.695746 | -122.345945 | House | 1.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 55.0 | 1 | moderate | 0 | 0 | 4038347 | 8.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2010 | Other neighborhoods | 47.696674 | -122.358512 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 68.0 | 2 | moderate | 1 | 1 | 523883 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2011 | Other neighborhoods | 47.684711 | -122.354424 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Greenwood | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 60.0 | 7 | strict | 0 | 0 | 4111954 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2012 | Other neighborhoods | 47.684004 | -122.353887 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 90.0 | 3 | moderate | 0 | 0 | 4693488 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2013 | Other neighborhoods | 47.691373 | -122.364049 | Townhouse | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 8 | 1.5 | 3.0 | "Wireless Internet","Smoke Detector","Carbon M... | 139.0 | 2 | strict | 0 | 0 | 5127136 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
| 2014 | Other neighborhoods | 47.703946 | -122.357571 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 51.0 | 1 | flexible | 0 | 0 | 7674720 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2015 | Other neighborhoods | 47.691774 | -122.365675 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 8028801 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2016 | Other neighborhoods | 47.694932 | -122.360011 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 115.0 | 3 | strict | 0 | 0 | 9050781 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2017 | Other neighborhoods | 47.697961 | -122.349007 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet","Pets live on this propert... | 80.0 | 2 | flexible | 0 | 0 | 178844 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
| 2018 | Other neighborhoods | 47.700481 | -122.350892 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 2 | flexible | 0 | 0 | 8034871 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2019 | Other neighborhoods | 47.684498 | -122.365383 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | strict | 0 | 0 | 3208330 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2020 | Other neighborhoods | 47.692851 | -122.356671 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 0.0 | 0 | Greenwood | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Elevator in B... | 75.0 | 1 | flexible | 0 | 0 | 9492036 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 2021 | Other neighborhoods | 47.690727 | -122.353305 | Apartment | 6.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 3 | moderate | 0 | 0 | 4863533 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2022 | Other neighborhoods | 47.692748 | -122.359757 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 63.0 | 1 | flexible | 0 | 0 | 4360485 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2023 | Other neighborhoods | 47.696926 | -122.352465 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 100.0 | 2 | moderate | 0 | 0 | 8194286 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2024 | Other neighborhoods | 47.695768 | -122.348207 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 2 | strict | 0 | 0 | 5524847 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2025 | Other neighborhoods | 47.686956 | -122.364497 | House | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Greenwood | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | flexible | 0 | 0 | 9236814 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2026 | Other neighborhoods | 47.690574 | -122.351628 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 2 | moderate | 0 | 0 | 8483744 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2027 | Other neighborhoods | 47.696562 | -122.362751 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Greenwood | Private room | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 280.0 | 1 | moderate | 0 | 0 | 609421 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2028 | Other neighborhoods | 47.695853 | -122.359356 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 160.0 | 1 | moderate | 0 | 0 | 3543247 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2029 | Other neighborhoods | 47.692504 | -122.352163 | House | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 7 | moderate | 0 | 0 | 4567243 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2030 | Other neighborhoods | 47.694308 | -122.350685 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 98.0 | 1 | moderate | 0 | 0 | 749758 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2031 | Other neighborhoods | 47.695840 | -122.356672 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 3 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 109.0 | 1 | moderate | 0 | 0 | 4854767 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2032 | Other neighborhoods | 47.696147 | -122.348643 | House | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Greenwood | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 125.0 | 2 | flexible | 0 | 0 | 8129537 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2033 | Other neighborhoods | 47.684123 | -122.347026 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 5 | 2.0 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 225.0 | 1 | flexible | 0 | 0 | 5014835 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2034 | Other neighborhoods | 47.699216 | -122.350716 | Other | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 69.0 | 1 | strict | 0 | 0 | 421168 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2035 | Other neighborhoods | 47.687527 | -122.356081 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 75.0 | 1 | flexible | 0 | 0 | 58503 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2036 | Other neighborhoods | 47.687658 | -122.357525 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 10 | 3.0 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 300.0 | 2 | strict | 0 | 0 | 7881802 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2037 | Other neighborhoods | 47.684589 | -122.359321 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning","Pets A... | 60.0 | 2 | strict | 0 | 0 | 9562586 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 |
| 2038 | Other neighborhoods | 47.700950 | -122.353221 | House | 2.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 43.0 | 1 | flexible | 0 | 0 | 10340165 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 2039 | Other neighborhoods | 47.683483 | -122.357054 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 3 | moderate | 1 | 1 | 370361 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 2040 | Other neighborhoods | 47.703047 | -122.362764 | Townhouse | 1.0 | Pull-out Sofa | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 110.0 | 1 | flexible | 0 | 0 | 3753645 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2041 | Other neighborhoods | 47.687966 | -122.352905 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 52.0 | 1 | strict | 0 | 0 | 3535171 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2042 | Other neighborhoods | 47.684649 | -122.357716 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Greenwood | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 100.0 | 3 | moderate | 1 | 1 | 2037250 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2043 | Other neighborhoods | 47.689406 | -122.348126 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Smoking Allowed",... | 50.0 | 1 | strict | 0 | 0 | 2605975 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2044 | Other neighborhoods | 47.685269 | -122.365504 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | Kitchen,Heating,"Smoke Detector","Carbon Monox... | 35.0 | 2 | flexible | 0 | 0 | 4825472 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2045 | Other neighborhoods | 47.699719 | -122.345089 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 66.0 | 2 | moderate | 0 | 0 | 5500398 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2046 | Other neighborhoods | 47.687782 | -122.348596 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Smo... | 99.0 | 2 | moderate | 0 | 0 | 587584 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2047 | Other neighborhoods | 47.685546 | -122.363262 | House | 3.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Greenwood | Entire home/apt | 7 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 1 | strict | 0 | 0 | 1220816 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2048 | Other neighborhoods | 47.699856 | -122.348117 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Greenwood | Entire home/apt | 4 | 0.0 | 2.0 | "Wireless Internet","Smoke Detector","Carbon M... | 150.0 | 2 | strict | 0 | 0 | 354453 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 2049 | Other neighborhoods | 47.693860 | -122.350494 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Greenwood | Entire home/apt | 1 | 1.0 | 1.0 | Kitchen,"Pets Allowed","Pets live on this prop... | 90.0 | 1 | flexible | 0 | 0 | 9576550 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2050 | Beacon Hill | 47.541756 | -122.289289 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Holly Park | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 45.0 | 1 | strict | 0 | 0 | 3793790 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2051 | Beacon Hill | 47.542907 | -122.296683 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Holly Park | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 9013210 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2052 | Beacon Hill | 47.536681 | -122.286116 | Townhouse | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Holly Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 50.0 | 1 | flexible | 0 | 0 | 9863457 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 2053 | Beacon Hill | 47.534276 | -122.281606 | House | 3.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Holly Park | Entire home/apt | 10 | 2.0 | 3.0 | "Cable TV","Wireless Internet","Air Conditioni... | 215.0 | 3 | strict | 0 | 0 | 23356 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2054 | Beacon Hill | 47.536996 | -122.281308 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Holly Park | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 138.0 | 1 | flexible | 0 | 0 | 6425537 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2055 | Beacon Hill | 47.539035 | -122.294243 | Camper/RV | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Holly Park | Entire home/apt | 4 | 1.0 | 0.0 | 375.0 | 1 | flexible | 0 | 0 | 7921453 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2056 | West Seattle | 47.515012 | -122.395551 | House | 3.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Fauntleroy | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 270.0 | 2 | strict | 0 | 0 | 8634897 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2057 | West Seattle | 47.520394 | -122.389285 | House | 5.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Fauntleroy | Entire home/apt | 9 | 4.0 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 495.0 | 3 | strict | 0 | 0 | 3604931 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2058 | West Seattle | 47.518624 | -122.386370 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fauntleroy | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 2 | moderate | 0 | 0 | 6937492 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2059 | West Seattle | 47.526789 | -122.383462 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fauntleroy | Entire home/apt | 4 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 129.0 | 2 | strict | 0 | 0 | 1048798 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2060 | West Seattle | 47.518552 | -122.391188 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fauntleroy | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Free Parking o... | 75.0 | 2 | strict | 0 | 0 | 613020 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2061 | West Seattle | 47.514680 | -122.393968 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fauntleroy | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 80.0 | 2 | moderate | 0 | 0 | 9109293 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 2062 | West Seattle | 47.518391 | -122.388489 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fauntleroy | Entire home/apt | 7 | 1.5 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 177.0 | 2 | strict | 0 | 0 | 6215943 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2063 | West Seattle | 47.532128 | -122.390785 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fauntleroy | Private room | 5 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 1 | flexible | 1 | 1 | 4069543 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2064 | West Seattle | 47.525476 | -122.388548 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fauntleroy | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 87.0 | 3 | moderate | 0 | 0 | 3986788 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2065 | West Seattle | 47.524809 | -122.387224 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fauntleroy | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 78.0 | 1 | moderate | 0 | 0 | 3968416 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2066 | Beacon Hill | 47.584683 | -122.311572 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Beacon Hill | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 60.0 | 2 | moderate | 0 | 0 | 1806899 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2067 | Beacon Hill | 47.579825 | -122.306880 | House | 1.0 | Real Bed | within an hour | 75.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 80.0 | 1 | flexible | 0 | 0 | 6168769 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2068 | Beacon Hill | 47.585942 | -122.314046 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 180.0 | 1 | flexible | 0 | 0 | 8187592 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2069 | Beacon Hill | 47.577795 | -122.302581 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 39.0 | 2 | moderate | 0 | 0 | 1925661 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2070 | Beacon Hill | 47.578785 | -122.307956 | House | 1.0 | Futon | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 4760968 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2071 | Beacon Hill | 47.577472 | -122.303080 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 42.0 | 1 | moderate | 0 | 0 | 3953365 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2072 | Beacon Hill | 47.586232 | -122.314806 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | North Beacon Hill | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 126.0 | 2 | moderate | 0 | 0 | 4909327 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2073 | Beacon Hill | 47.579020 | -122.315743 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 60.0 | 1 | moderate | 0 | 0 | 7828509 | 8.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2074 | Beacon Hill | 47.588266 | -122.308486 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 99.0 | 7 | flexible | 0 | 0 | 4903296 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 2075 | Beacon Hill | 47.575668 | -122.303317 | House | 2.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Private room | 3 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 1 | strict | 1 | 1 | 1323634 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2076 | Beacon Hill | 47.576186 | -122.303867 | House | 2.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 1 | strict | 1 | 1 | 571640 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2077 | Beacon Hill | 47.576085 | -122.304027 | House | 4.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Private room | 6 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 169.0 | 1 | strict | 1 | 1 | 613151 | 6.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2078 | Beacon Hill | 47.577415 | -122.302300 | House | 3.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 1 | strict | 1 | 1 | 278192 | 8.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2079 | Beacon Hill | 47.577787 | -122.302791 | House | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | strict | 1 | 1 | 571651 | 8.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2080 | Beacon Hill | 47.581456 | -122.315379 | House | 1.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 7883181 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2081 | Beacon Hill | 47.577388 | -122.304361 | Tent | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 0.5 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 65.0 | 1 | flexible | 0 | 0 | 7718139 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2082 | Beacon Hill | 47.578060 | -122.314010 | Townhouse | 2.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 260.0 | 1 | flexible | 0 | 0 | 6572501 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2083 | Beacon Hill | 47.578413 | -122.315794 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Beacon Hill | Entire home/apt | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | moderate | 0 | 0 | 4668327 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2084 | Beacon Hill | 47.572876 | -122.309877 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 90.0 | 1 | moderate | 0 | 0 | 7636185 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2085 | Beacon Hill | 47.572749 | -122.307432 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Kitchen,"Free Parking on Premises",Heating,... | 59.0 | 2 | strict | 1 | 1 | 6421243 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2086 | Beacon Hill | 47.580170 | -122.311728 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 70.0 | 2 | moderate | 0 | 0 | 5580773 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2087 | Beacon Hill | 47.587777 | -122.316920 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 2 | moderate | 0 | 0 | 8737284 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2088 | Beacon Hill | 47.585581 | -122.311956 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | North Beacon Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 85.0 | 3 | moderate | 1 | 1 | 958475 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2089 | Beacon Hill | 47.571812 | -122.308181 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 1.0 | 1.0 | 74.0 | 2 | moderate | 0 | 0 | 8605841 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2090 | Beacon Hill | 47.575439 | -122.307571 | Bungalow | 1.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 2 | moderate | 0 | 0 | 7500728 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2091 | Beacon Hill | 47.577561 | -122.304281 | House | 9.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 14 | 3.0 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 399.0 | 1 | strict | 1 | 1 | 606297 | 8.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2092 | Beacon Hill | 47.580044 | -122.307093 | House | 4.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 300.0 | 7 | strict | 0 | 0 | 9094366 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2093 | Beacon Hill | 47.578960 | -122.304321 | Tent | 1.0 | Airbed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 0.5 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 65.0 | 1 | flexible | 0 | 0 | 7096107 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2094 | Beacon Hill | 47.565292 | -122.312066 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 79.0 | 3 | strict | 0 | 0 | 9496612 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2095 | Beacon Hill | 47.588384 | -122.316185 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 1 | flexible | 0 | 0 | 8785768 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2096 | Beacon Hill | 47.583787 | -122.316770 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 0.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 75.0 | 2 | moderate | 0 | 0 | 143580 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 2097 | Beacon Hill | 47.577271 | -122.301857 | House | 5.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 219.0 | 1 | strict | 1 | 1 | 611500 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2098 | Beacon Hill | 47.575291 | -122.302049 | House | 4.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 7 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 1 | strict | 1 | 1 | 264829 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2099 | Beacon Hill | 47.589462 | -122.310994 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 87.0 | 1 | flexible | 0 | 0 | 1856851 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2100 | Beacon Hill | 47.577646 | -122.302452 | House | 3.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 169.0 | 1 | strict | 1 | 1 | 1317919 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2101 | Beacon Hill | 47.585130 | -122.315261 | House | 1.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 2 | flexible | 0 | 0 | 392140 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2102 | Beacon Hill | 47.571863 | -122.306667 | House | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | North Beacon Hill | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 30.0 | 1 | moderate | 1 | 1 | 3139972 | 9.571429 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2103 | Beacon Hill | 47.577062 | -122.308888 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 1 | flexible | 0 | 0 | 10020221 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 2104 | Beacon Hill | 47.588521 | -122.318219 | Apartment | 2.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 45.0 | 1 | flexible | 0 | 0 | 8759443 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2105 | Beacon Hill | 47.579583 | -122.309832 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 50.0 | 2 | moderate | 0 | 0 | 6317449 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2106 | Beacon Hill | 47.584671 | -122.314645 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 149.0 | 2 | moderate | 0 | 0 | 6416765 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2107 | Beacon Hill | 47.584301 | -122.311762 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 31 | moderate | 0 | 0 | 5056580 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2108 | Beacon Hill | 47.584191 | -122.311652 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 69.0 | 2 | strict | 1 | 1 | 6793490 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 |
| 2109 | Beacon Hill | 47.572721 | -122.307347 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 69.0 | 2 | strict | 1 | 1 | 2069917 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2110 | Beacon Hill | 47.590435 | -122.308710 | House | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 1 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 1 | flexible | 0 | 0 | 3258585 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2111 | Beacon Hill | 47.571813 | -122.305381 | House | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | North Beacon Hill | Shared room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 55.0 | 1 | moderate | 1 | 1 | 815017 | 9.285714 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2112 | Beacon Hill | 47.576204 | -122.306728 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets Allowed","P... | 75.0 | 3 | flexible | 0 | 0 | 6610942 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2113 | Beacon Hill | 47.583451 | -122.316473 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 5365612 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2114 | Beacon Hill | 47.571694 | -122.309508 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 69.0 | 2 | strict | 1 | 1 | 1556170 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2115 | Beacon Hill | 47.573143 | -122.310548 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 5 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 112.0 | 1 | flexible | 0 | 0 | 2486612 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2116 | Beacon Hill | 47.577433 | -122.305475 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 150.0 | 1 | flexible | 0 | 0 | 7748778 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2117 | Beacon Hill | 47.574185 | -122.299385 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 65.0 | 1 | moderate | 0 | 0 | 6872650 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2118 | Beacon Hill | 47.588323 | -122.311192 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 104.0 | 1 | moderate | 0 | 0 | 7634011 | 8.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2119 | Beacon Hill | 47.588753 | -122.311076 | House | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 60.0 | 1 | flexible | 0 | 0 | 1898511 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2120 | Beacon Hill | 47.572489 | -122.311165 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 60.0 | 1 | flexible | 0 | 0 | 8067053 | 8.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2121 | Beacon Hill | 47.592141 | -122.319354 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 2.5 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 105.0 | 7 | moderate | 0 | 0 | 1872885 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2122 | Beacon Hill | 47.571768 | -122.308318 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 144.0 | 2 | moderate | 0 | 0 | 6561379 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2123 | Beacon Hill | 47.576252 | -122.303676 | House | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | strict | 1 | 1 | 265901 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2124 | Beacon Hill | 47.575769 | -122.316362 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 108.0 | 3 | moderate | 0 | 0 | 392779 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2125 | Beacon Hill | 47.595661 | -122.318016 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 159.0 | 2 | moderate | 0 | 0 | 202174 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2126 | Beacon Hill | 47.580093 | -122.304856 | House | 3.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | strict | 0 | 0 | 7853358 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2127 | Beacon Hill | 47.580021 | -122.306864 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 2 | moderate | 0 | 0 | 2197168 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2128 | Beacon Hill | 47.579752 | -122.309385 | Bed & Breakfast | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 89.0 | 2 | flexible | 0 | 0 | 4075152 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2129 | Beacon Hill | 47.591886 | -122.318223 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Pool,Kitchen,"Free Park... | 120.0 | 1 | flexible | 0 | 0 | 5593399 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2130 | Beacon Hill | 47.571303 | -122.309674 | Apartment | 1.0 | Real Bed | within a day | 78.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 70.0 | 2 | moderate | 0 | 0 | 366301 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2131 | Beacon Hill | 47.583132 | -122.314710 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 6644628 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2132 | Beacon Hill | 47.588802 | -122.315256 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 5 | 2.5 | 2.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 120.0 | 2 | moderate | 0 | 0 | 3593582 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2133 | Beacon Hill | 47.577431 | -122.305695 | Tent | 1.0 | Airbed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 0.5 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 65.0 | 1 | flexible | 0 | 0 | 6716620 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2134 | Beacon Hill | 47.583601 | -122.313983 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 6796066 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2135 | Beacon Hill | 47.575830 | -122.303484 | House | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 36.0 | 1 | moderate | 0 | 0 | 3977450 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2136 | Beacon Hill | 47.579067 | -122.315388 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 1 | moderate | 0 | 0 | 793629 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2137 | Rainier Valley | 47.590011 | -122.294684 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mount Baker | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 88.0 | 3 | moderate | 0 | 0 | 9110410 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2138 | Beacon Hill | 47.591779 | -122.318462 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 75.0 | 1 | moderate | 0 | 0 | 5705161 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2139 | Beacon Hill | 47.591552 | -122.312996 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beacon Hill | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 130.0 | 1 | flexible | 0 | 0 | 8596938 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2140 | Beacon Hill | 47.572820 | -122.307462 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 63.0 | 2 | moderate | 0 | 0 | 5364119 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2141 | Beacon Hill | 47.586461 | -122.315050 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 60.0 | 1 | strict | 0 | 0 | 6211882 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2142 | Beacon Hill | 47.576605 | -122.301934 | House | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 37.0 | 1 | moderate | 0 | 0 | 4374326 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2143 | Beacon Hill | 47.587861 | -122.313975 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Beacon Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 85.0 | 1 | strict | 0 | 0 | 7887651 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2144 | Beacon Hill | 47.581230 | -122.310452 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beacon Hill | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 85.0 | 2 | moderate | 0 | 0 | 9013441 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2145 | Rainier Valley | 47.545532 | -122.272228 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Brighton | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 84.0 | 1 | flexible | 0 | 0 | 7362757 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2146 | Rainier Valley | 47.543966 | -122.271689 | Apartment | 3.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Brighton | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 275.0 | 2 | strict | 0 | 0 | 9609152 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2147 | Rainier Valley | 47.545387 | -122.273023 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Brighton | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 39.0 | 3 | flexible | 0 | 0 | 4639040 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2148 | Rainier Valley | 47.538986 | -122.277991 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Brighton | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 2 | moderate | 0 | 0 | 2586350 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2149 | Rainier Valley | 47.540485 | -122.275294 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Brighton | Entire home/apt | 3 | 0.5 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 2 | moderate | 0 | 0 | 6482409 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2150 | Rainier Valley | 47.535407 | -122.279831 | Apartment | 1.0 | Futon | 0 | 0.0 | 100.0 | 0 | Brighton | Shared room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 40.0 | 1 | flexible | 0 | 0 | 8089214 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2151 | Rainier Valley | 47.545156 | -122.269940 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Brighton | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 34.0 | 1 | strict | 0 | 0 | 8409975 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2152 | Rainier Valley | 47.545520 | -122.269886 | House | 2.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Brighton | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 35.0 | 1 | strict | 0 | 0 | 8409926 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2153 | Rainier Valley | 47.544388 | -122.283124 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Brighton | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 65.0 | 1 | moderate | 0 | 0 | 6107518 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2154 | Rainier Valley | 47.536497 | -122.274660 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Brighton | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 75.0 | 1 | flexible | 0 | 0 | 9797000 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2155 | Rainier Valley | 47.536783 | -122.268295 | House | 6.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Brighton | Entire home/apt | 12 | 3.0 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 199.0 | 2 | strict | 0 | 0 | 5242148 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2156 | Rainier Valley | 47.545613 | -122.272573 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Brighton | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 45.0 | 3 | flexible | 0 | 0 | 3372535 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2157 | Rainier Valley | 47.545173 | -122.270136 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Brighton | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 85.0 | 2 | moderate | 0 | 0 | 995443 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2158 | Delridge | 47.517504 | -122.364684 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | South Delridge | Entire home/apt | 5 | 2.5 | 3.0 | "Cable TV","Wireless Internet","Wheelchair Acc... | 150.0 | 3 | moderate | 0 | 0 | 3279728 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2159 | Delridge | 47.519769 | -122.359762 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Private room | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 41.0 | 1 | flexible | 0 | 0 | 8446766 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2160 | Delridge | 47.526647 | -122.361138 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Breakfast,"Pets live on... | 45.0 | 1 | moderate | 0 | 0 | 9733841 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 |
| 2161 | Delridge | 47.525530 | -122.357734 | Bed & Breakfast | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 2 | moderate | 0 | 0 | 5852034 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2162 | Delridge | 47.527937 | -122.363674 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | South Delridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Hot... | 95.0 | 1 | moderate | 0 | 0 | 1851837 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2163 | Delridge | 47.519449 | -122.362499 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | South Delridge | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 79.0 | 1 | flexible | 0 | 0 | 7324041 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2164 | Delridge | 47.517697 | -122.365299 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | South Delridge | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 70.0 | 2 | flexible | 0 | 0 | 4105081 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2165 | Delridge | 47.519138 | -122.359372 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Private room | 2 | 1.0 | 1.0 | 50.0 | 1 | flexible | 0 | 0 | 8474605 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2166 | Delridge | 47.523980 | -122.359891 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 48.0 | 3 | strict | 0 | 1 | 5682 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2167 | Delridge | 47.530785 | -122.355458 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | South Delridge | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 2 | moderate | 0 | 0 | 2737012 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2168 | Delridge | 47.533149 | -122.365506 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | strict | 0 | 0 | 8743202 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2169 | Delridge | 47.529873 | -122.359823 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Delridge | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 2 | strict | 1 | 1 | 1003890 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2170 | Other neighborhoods | 47.690765 | -122.274694 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | View Ridge | Private room | 1 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 150.0 | 1 | flexible | 0 | 0 | 8446120 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2171 | Other neighborhoods | 47.676066 | -122.276884 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | View Ridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 3 | flexible | 0 | 0 | 8153673 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2172 | Other neighborhoods | 47.684173 | -122.265510 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | View Ridge | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 120.0 | 2 | moderate | 0 | 0 | 7936712 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2173 | Other neighborhoods | 47.685087 | -122.267099 | Loft | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | View Ridge | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 49.0 | 1 | flexible | 0 | 0 | 2642359 | 9.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2174 | Other neighborhoods | 47.677869 | -122.271830 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | View Ridge | Entire home/apt | 6 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 244.0 | 3 | moderate | 0 | 0 | 6528342 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2175 | Other neighborhoods | 47.676470 | -122.268183 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | View Ridge | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 125.0 | 2 | flexible | 0 | 0 | 9820818 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 2176 | Other neighborhoods | 47.681715 | -122.276023 | House | 4.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | View Ridge | Entire home/apt | 8 | 2.0 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 175.0 | 3 | moderate | 0 | 0 | 8754180 | 8.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2177 | Rainier Valley | 47.525432 | -122.278234 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Dunlap | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 38.0 | 2 | moderate | 0 | 0 | 8904766 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2178 | Rainier Valley | 47.521294 | -122.273182 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Dunlap | Private room | 6 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 70.0 | 1 | moderate | 0 | 0 | 3186785 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2179 | Rainier Valley | 47.526740 | -122.274800 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Dunlap | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 150.0 | 2 | flexible | 0 | 0 | 1885801 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2180 | Rainier Valley | 47.527652 | -122.265966 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Dunlap | Entire home/apt | 4 | 2.0 | 3.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 65.0 | 7 | moderate | 0 | 0 | 8006745 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2181 | Rainier Valley | 47.527645 | -122.277402 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Dunlap | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 1 | moderate | 0 | 0 | 7013085 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2182 | Rainier Valley | 47.524565 | -122.260919 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Dunlap | Entire home/apt | 6 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 295.0 | 2 | moderate | 0 | 0 | 6546748 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2183 | Rainier Valley | 47.527494 | -122.260957 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Dunlap | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 2 | strict | 0 | 0 | 4526737 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2184 | Rainier Valley | 47.529846 | -122.275840 | 0 | 2.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Dunlap | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 120.0 | 2 | strict | 0 | 0 | 3335 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2185 | Rainier Valley | 47.524135 | -122.275976 | Apartment | 1.0 | Couch | within an hour | 100.0 | 100.0 | 0 | Dunlap | Shared room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 45.0 | 1 | flexible | 0 | 0 | 4735761 | 8.857143 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2186 | Rainier Valley | 47.527511 | -122.266628 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Dunlap | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 68.0 | 2 | flexible | 0 | 0 | 1672979 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2187 | Rainier Valley | 47.519054 | -122.270418 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Dunlap | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 55.0 | 1 | moderate | 0 | 0 | 7388899 | 8.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2188 | Rainier Valley | 47.522834 | -122.273992 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Dunlap | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 40.0 | 1 | flexible | 0 | 0 | 8052307 | 9.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2189 | Rainier Valley | 47.527318 | -122.277909 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Dunlap | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 36.0 | 1 | flexible | 0 | 0 | 9068366 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2190 | Rainier Valley | 47.529756 | -122.275700 | Treehouse | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Dunlap | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 48.0 | 2 | strict | 0 | 0 | 6117473 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2191 | Rainier Valley | 47.523437 | -122.275755 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Dunlap | Shared room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 90.0 | 1 | flexible | 0 | 0 | 8541389 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2192 | Rainier Valley | 47.530667 | -122.275409 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Dunlap | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 50.0 | 2 | strict | 0 | 0 | 7745016 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2193 | Rainier Valley | 47.519886 | -122.274055 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Dunlap | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 60.0 | 1 | moderate | 0 | 0 | 6557297 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2194 | Rainier Valley | 47.530898 | -122.277116 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Dunlap | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 2 | strict | 0 | 0 | 1263470 | 8.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2195 | Rainier Valley | 47.519817 | -122.274764 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Dunlap | Entire home/apt | 14 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 1 | moderate | 0 | 0 | 7415378 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2196 | Rainier Valley | 47.527734 | -122.278903 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Dunlap | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 42.0 | 2 | moderate | 0 | 0 | 8849596 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2197 | Rainier Valley | 47.517341 | -122.261371 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 35.0 | 1 | strict | 0 | 0 | 7902382 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2198 | Rainier Valley | 47.508503 | -122.260980 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 67.0 | 1 | flexible | 0 | 0 | 4772997 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2199 | Rainier Valley | 47.518554 | -122.270775 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 55.0 | 1 | moderate | 0 | 0 | 4708075 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2200 | Rainier Valley | 47.518939 | -122.257085 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 65.0 | 4 | moderate | 0 | 0 | 3859882 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2201 | Rainier Valley | 47.510164 | -122.260443 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Rainier Beach | Entire home/apt | 12 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 169.0 | 1 | strict | 0 | 0 | 4711069 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2202 | Rainier Valley | 47.507284 | -122.254189 | Camper/RV | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Rainier Beach | Entire home/apt | 2 | 0.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 75.0 | 1 | strict | 0 | 0 | 7713043 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2203 | Rainier Valley | 47.511457 | -122.256081 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Rainier Beach | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 88.0 | 1 | moderate | 0 | 0 | 174636 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2204 | Rainier Valley | 47.517453 | -122.258186 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 60.0 | 1 | flexible | 0 | 0 | 8195348 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2205 | Rainier Valley | 47.517901 | -122.262213 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 35.0 | 1 | strict | 0 | 0 | 7902068 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2206 | Rainier Valley | 47.514652 | -122.259320 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 57.0 | 2 | moderate | 0 | 0 | 4832481 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2207 | Rainier Valley | 47.517386 | -122.261485 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 37.0 | 1 | strict | 0 | 0 | 7902268 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2208 | Rainier Valley | 47.518524 | -122.257826 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 60.0 | 3 | moderate | 0 | 0 | 4559222 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2209 | Rainier Valley | 47.518829 | -122.261056 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 39.0 | 1 | strict | 0 | 0 | 7902330 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2210 | Rainier Valley | 47.516371 | -122.259947 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Rainier Beach | Private room | 1 | 1.0 | 1.0 | "Wireless Internet","Pets live on this propert... | 42.0 | 2 | moderate | 0 | 0 | 6249164 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2211 | Rainier Valley | 47.510496 | -122.260395 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Rainier Beach | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 79.0 | 4 | strict | 0 | 0 | 5192122 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2212 | Rainier Valley | 47.510416 | -122.252230 | Other | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Rainier Beach | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 118.0 | 3 | flexible | 0 | 0 | 8901863 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2213 | Rainier Valley | 47.508394 | -122.258239 | House | 1.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Rainier Beach | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 60.0 | 1 | strict | 0 | 0 | 2027236 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2214 | Rainier Valley | 47.559460 | -122.283034 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 69.0 | 2 | strict | 0 | 0 | 3673011 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2215 | Rainier Valley | 47.563608 | -122.294796 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 69.0 | 1 | flexible | 0 | 0 | 6577295 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2216 | Rainier Valley | 47.588116 | -122.292308 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 5 | 2.5 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 300.0 | 3 | flexible | 0 | 0 | 4384000 | 8.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2217 | Rainier Valley | 47.560746 | -122.283139 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Private room | 3 | 1.0 | 1.0 | "Wireless Internet",Heating,"Family/Kid Friend... | 65.0 | 1 | flexible | 0 | 0 | 3147706 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 2218 | Rainier Valley | 47.552198 | -122.279844 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 2 | strict | 1 | 1 | 1900698 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2219 | Rainier Valley | 47.567269 | -122.290147 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 1 | moderate | 0 | 0 | 4157572 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2220 | Rainier Valley | 47.558459 | -122.287128 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 100.0 | 1 | flexible | 0 | 0 | 8886847 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 2221 | Rainier Valley | 47.549847 | -122.273214 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 1 | moderate | 0 | 0 | 3642289 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2222 | Rainier Valley | 47.559083 | -122.283466 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 90.0 | 2 | moderate | 0 | 0 | 3022564 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2223 | Rainier Valley | 47.560866 | -122.286124 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Columbia City | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 80.0 | 2 | moderate | 0 | 0 | 2203983 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2224 | Rainier Valley | 47.561297 | -122.281219 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 99.0 | 2 | strict | 1 | 1 | 215882 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2225 | Rainier Valley | 47.560511 | -122.278948 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 2 | moderate | 0 | 0 | 491958 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2226 | Rainier Valley | 47.552842 | -122.277894 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | moderate | 0 | 0 | 190984 | 8.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2227 | Rainier Valley | 47.556727 | -122.286183 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 125.0 | 2 | moderate | 0 | 0 | 1599856 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2228 | Rainier Valley | 47.556341 | -122.283969 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 90.0 | 7 | strict | 1 | 1 | 1223644 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2229 | Rainier Valley | 47.563591 | -122.296780 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 40.0 | 7 | flexible | 0 | 0 | 3246706 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2230 | Rainier Valley | 47.562499 | -122.297515 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 50.0 | 2 | strict | 0 | 0 | 1305009 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2231 | Rainier Valley | 47.553939 | -122.285651 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 97.0 | 2 | flexible | 0 | 0 | 8952253 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2232 | Rainier Valley | 47.547717 | -122.273836 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 10 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 3 | strict | 0 | 0 | 4041868 | 7.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2233 | Rainier Valley | 47.546800 | -122.278068 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 1 | flexible | 0 | 0 | 8845310 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2234 | Rainier Valley | 47.570957 | -122.299063 | House | 6.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 9 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 195.0 | 2 | moderate | 0 | 0 | 7750477 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2235 | Rainier Valley | 47.571426 | -122.298328 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 4 | 2.0 | 2.0 | "Cable TV","Wireless Internet","Air Conditioni... | 150.0 | 2 | flexible | 0 | 0 | 7938941 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2236 | Rainier Valley | 47.561021 | -122.279445 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 95.0 | 2 | strict | 0 | 0 | 2721575 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2237 | Rainier Valley | 47.562880 | -122.298243 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 72.0 | 1 | moderate | 0 | 0 | 1738425 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2238 | Rainier Valley | 47.553771 | -122.283684 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 100.0 | 2 | moderate | 0 | 0 | 2471659 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2239 | Rainier Valley | 47.569985 | -122.297272 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 55.0 | 2 | moderate | 0 | 0 | 6078382 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2240 | Rainier Valley | 47.575024 | -122.297306 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 65.0 | 1 | moderate | 0 | 0 | 7585688 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2241 | Rainier Valley | 47.563180 | -122.284923 | House | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Columbia City | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 124.0 | 1 | strict | 0 | 0 | 3120652 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2242 | Rainier Valley | 47.565048 | -122.292859 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 70.0 | 2 | moderate | 0 | 0 | 4922836 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2243 | Rainier Valley | 47.564918 | -122.292639 | House | 1.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 2 | moderate | 0 | 0 | 1433440 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2244 | Rainier Valley | 47.547238 | -122.273123 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 65.0 | 2 | strict | 0 | 0 | 2980762 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2245 | Rainier Valley | 47.563356 | -122.298220 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 72.0 | 1 | moderate | 0 | 0 | 1733747 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2246 | Rainier Valley | 47.567915 | -122.290736 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | strict | 0 | 0 | 1455269 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2247 | Rainier Valley | 47.567911 | -122.293388 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 220.0 | 2 | strict | 0 | 0 | 1457330 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2248 | Rainier Valley | 47.546700 | -122.278030 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Columbia City | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 45.0 | 1 | flexible | 0 | 0 | 7420488 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2249 | Rainier Valley | 47.568562 | -122.290539 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 1 | flexible | 0 | 0 | 8902887 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2250 | Rainier Valley | 47.557783 | -122.282031 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 90.0 | 2 | strict | 0 | 0 | 5175464 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2251 | Rainier Valley | 47.561359 | -122.293909 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Private room | 1 | 2.5 | 1.0 | Internet,"Wireless Internet",Washer,Dryer,"Smo... | 25.0 | 1 | moderate | 0 | 0 | 7411863 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2252 | Rainier Valley | 47.565754 | -122.290416 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 1 | moderate | 0 | 0 | 2856806 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2253 | Rainier Valley | 47.562528 | -122.292440 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 7 | moderate | 0 | 0 | 693956 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2254 | Rainier Valley | 47.563611 | -122.289052 | Cabin | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 1 | strict | 0 | 0 | 5682316 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2255 | Rainier Valley | 47.554873 | -122.277833 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Private room | 4 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 1 | flexible | 0 | 0 | 8597800 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2256 | Rainier Valley | 47.557423 | -122.281269 | Apartment | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Columbia City | Entire home/apt | 7 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 110.0 | 2 | flexible | 0 | 0 | 4707171 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2257 | Rainier Valley | 47.552783 | -122.286094 | House | 2.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Columbia City | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 59.0 | 1 | flexible | 0 | 0 | 9138392 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2258 | Rainier Valley | 47.548472 | -122.278428 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Columbia City | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 65.0 | 1 | moderate | 0 | 0 | 7417852 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2259 | Rainier Valley | 47.557774 | -122.284052 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 70.0 | 1 | moderate | 0 | 0 | 9597947 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2260 | Rainier Valley | 47.554634 | -122.274625 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 65.0 | 2 | moderate | 0 | 0 | 7262142 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 |
| 2261 | Rainier Valley | 47.559452 | -122.283634 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 4 | flexible | 0 | 0 | 7615170 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2262 | Rainier Valley | 47.569615 | -122.293955 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 90.0 | 1 | flexible | 0 | 0 | 609610 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2263 | Rainier Valley | 47.561838 | -122.289084 | House | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 70.0 | 1 | moderate | 0 | 0 | 8326413 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2264 | Rainier Valley | 47.552104 | -122.281029 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Entire home/apt | 4 | 1.5 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 175.0 | 7 | strict | 0 | 0 | 4833820 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2265 | Rainier Valley | 47.561852 | -122.278565 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 199.0 | 2 | strict | 0 | 0 | 7480196 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2266 | Rainier Valley | 47.556673 | -122.282305 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 8 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 109.0 | 1 | strict | 0 | 0 | 8774504 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2267 | Rainier Valley | 47.560859 | -122.275968 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Columbia City | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Pe... | 70.0 | 2 | flexible | 0 | 0 | 8627921 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 2268 | Rainier Valley | 47.551422 | -122.280875 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Columbia City | Private room | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 58.0 | 3 | strict | 0 | 0 | 788146 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2269 | Rainier Valley | 47.551952 | -122.287822 | House | 1.0 | Pull-out Sofa | within a day | 70.0 | 100.0 | 0 | Columbia City | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 35.0 | 1 | flexible | 0 | 0 | 9217446 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2270 | Rainier Valley | 47.564326 | -122.288292 | House | 5.0 | Real Bed | within a few hours | 70.0 | 100.0 | 0 | Columbia City | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 300.0 | 3 | moderate | 0 | 0 | 2016613 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2271 | Rainier Valley | 47.555858 | -122.272921 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Columbia City | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 95.0 | 3 | strict | 0 | 0 | 2695493 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2272 | Rainier Valley | 47.552412 | -122.274180 | House | 1.0 | Futon | within a day | 100.0 | 0.0 | 0 | Columbia City | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 9063355 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2273 | Rainier Valley | 47.589007 | -122.297433 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning","Free P... | 49.0 | 2 | moderate | 0 | 0 | 7922663 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2274 | Rainier Valley | 47.577642 | -122.289200 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mount Baker | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Smoke ... | 55.0 | 1 | flexible | 0 | 0 | 9415562 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2275 | Rainier Valley | 47.571674 | -122.287721 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 49.0 | 1 | moderate | 0 | 0 | 9075656 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2276 | Rainier Valley | 47.574989 | -122.291087 | House | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Mount Baker | Private room | 2 | 0.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,Break... | 40.0 | 1 | flexible | 0 | 0 | 9710851 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2277 | Rainier Valley | 47.590909 | -122.294778 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 3 | strict | 0 | 0 | 1983713 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2278 | Rainier Valley | 47.578687 | -122.291525 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Mount Baker | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 70.0 | 1 | moderate | 0 | 0 | 7363727 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2279 | Rainier Valley | 47.573764 | -122.294342 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 74.0 | 1 | flexible | 0 | 0 | 10022421 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 |
| 2280 | Rainier Valley | 47.575891 | -122.288478 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mount Baker | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | flexible | 0 | 0 | 6274351 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2281 | Rainier Valley | 47.579310 | -122.292886 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Mount Baker | Entire home/apt | 7 | 3.0 | 3.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 150.0 | 1 | moderate | 0 | 0 | 777159 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2282 | Rainier Valley | 47.579784 | -122.291729 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Mount Baker | Entire home/apt | 4 | 1.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 3 | strict | 0 | 0 | 3922845 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2283 | Rainier Valley | 47.568408 | -122.286214 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mount Baker | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 42.0 | 1 | moderate | 0 | 0 | 674113 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2284 | Rainier Valley | 47.590748 | -122.295346 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Mount Baker | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 59.0 | 1 | strict | 0 | 0 | 8053128 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2285 | Rainier Valley | 47.590959 | -122.294553 | Bed & Breakfast | 2.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Mount Baker | Private room | 3 | 2.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 125.0 | 1 | strict | 0 | 0 | 7534300 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 2286 | Rainier Valley | 47.569473 | -122.280107 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | flexible | 0 | 0 | 1009838 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2287 | Rainier Valley | 47.585650 | -122.292887 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 80.0 | 1 | flexible | 0 | 0 | 9823290 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2288 | Rainier Valley | 47.583493 | -122.288972 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Mount Baker | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | flexible | 0 | 0 | 5194332 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2289 | Rainier Valley | 47.583572 | -122.295901 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 5 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 90.0 | 3 | strict | 0 | 1 | 841274 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2290 | Rainier Valley | 47.584915 | -122.291849 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | flexible | 0 | 0 | 8904748 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2291 | Rainier Valley | 47.565299 | -122.284719 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 70.0 | 2 | flexible | 0 | 0 | 8734809 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2292 | Rainier Valley | 47.574107 | -122.285062 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 2 | moderate | 0 | 0 | 7562331 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2293 | Rainier Valley | 47.568407 | -122.281219 | Camper/RV | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mount Baker | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 99.0 | 2 | moderate | 0 | 0 | 4461706 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2294 | Rainier Valley | 47.589630 | -122.295166 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 155.0 | 2 | strict | 0 | 0 | 3890786 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2295 | Rainier Valley | 47.577935 | -122.294052 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 2 | strict | 0 | 0 | 8474253 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2296 | Rainier Valley | 47.589076 | -122.297659 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 4 | 1.5 | 2.0 | 140.0 | 2 | flexible | 0 | 0 | 5559063 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2297 | Rainier Valley | 47.566496 | -122.286412 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 50.0 | 1 | flexible | 0 | 0 | 4126284 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2298 | Rainier Valley | 47.568217 | -122.281673 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Mount Baker | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 139.0 | 2 | strict | 0 | 0 | 1209447 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2299 | Rainier Valley | 47.564861 | -122.285446 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 5 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 126.0 | 3 | moderate | 0 | 0 | 4364285 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2300 | Rainier Valley | 47.567009 | -122.281101 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mount Baker | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 105.0 | 2 | strict | 0 | 0 | 6716874 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 2301 | Rainier Valley | 47.575481 | -122.288159 | House | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Mount Baker | Entire home/apt | 6 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 1 | flexible | 0 | 0 | 4659824 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2302 | Rainier Valley | 47.583444 | -122.295868 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Mount Baker | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 2 | moderate | 0 | 0 | 3677729 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2303 | Rainier Valley | 47.569043 | -122.282822 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 2 | 1.5 | 1.0 | "Cable TV",Internet,"Wireless Internet","Wheel... | 92.0 | 2 | strict | 0 | 0 | 1097520 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2304 | Rainier Valley | 47.579636 | -122.293411 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 1 | Mount Baker | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 69.0 | 2 | flexible | 0 | 0 | 2898954 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 2305 | Rainier Valley | 47.575499 | -122.290645 | Bed & Breakfast | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Free ... | 75.0 | 2 | moderate | 1 | 1 | 826436 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 2306 | Rainier Valley | 47.565974 | -122.284133 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 3 | 0.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 105.0 | 2 | moderate | 0 | 0 | 774659 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2307 | Rainier Valley | 47.589851 | -122.295132 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 3 | strict | 0 | 0 | 3849918 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2308 | Rainier Valley | 47.580130 | -122.285621 | House | 2.0 | Real Bed | within an hour | 89.0 | 100.0 | 1 | Mount Baker | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | flexible | 0 | 0 | 7382303 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2309 | Rainier Valley | 47.565674 | -122.285121 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 54.0 | 1 | flexible | 0 | 0 | 5376433 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2310 | Rainier Valley | 47.568560 | -122.286429 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 52.0 | 1 | moderate | 0 | 0 | 1750681 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2311 | Rainier Valley | 47.587694 | -122.294457 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mount Baker | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 150.0 | 4 | strict | 0 | 0 | 7229312 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2312 | Rainier Valley | 47.565770 | -122.285007 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 80.0 | 2 | moderate | 0 | 0 | 2520890 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2313 | Rainier Valley | 47.590629 | -122.289824 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | flexible | 0 | 0 | 8391954 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2314 | Rainier Valley | 47.571243 | -122.290788 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Mount Baker | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 68.0 | 2 | flexible | 0 | 0 | 797358 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2315 | Rainier Valley | 47.586837 | -122.295262 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 49.0 | 2 | moderate | 0 | 0 | 7922013 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2316 | Rainier Valley | 47.588287 | -122.295912 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 39.0 | 3 | moderate | 0 | 0 | 7956337 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2317 | Rainier Valley | 47.573779 | -122.284964 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 3 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 95.0 | 2 | strict | 0 | 0 | 2686659 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2318 | Rainier Valley | 47.573754 | -122.292720 | Bed & Breakfast | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 89.0 | 2 | moderate | 1 | 1 | 755613 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
| 2319 | Rainier Valley | 47.569289 | -122.285545 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Mount Baker | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 62.0 | 1 | moderate | 0 | 0 | 1758935 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2320 | Rainier Valley | 47.579529 | -122.293866 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Mount Baker | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 81.0 | 2 | strict | 0 | 0 | 8474294 | 7.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2321 | Seward Park | 47.564386 | -122.269097 | Apartment | 1.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | Seward Park | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 70.0 | 3 | flexible | 0 | 0 | 3904056 | 8.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2322 | Seward Park | 47.560289 | -122.269428 | House | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Seward Park | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 1 | flexible | 0 | 0 | 7914021 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2323 | Seward Park | 47.562330 | -122.269354 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 3 | strict | 0 | 0 | 9364302 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2324 | Seward Park | 47.552705 | -122.262519 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 3 | moderate | 0 | 0 | 8196883 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2325 | Seward Park | 47.551769 | -122.261777 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 63.0 | 1 | flexible | 0 | 0 | 7938153 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2326 | Seward Park | 47.559208 | -122.274705 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Seward Park | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 1 | strict | 0 | 0 | 2763078 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2327 | Seward Park | 47.544622 | -122.269519 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Seward Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 60.0 | 2 | moderate | 0 | 0 | 3258213 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2328 | Seward Park | 47.550842 | -122.270068 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Seward Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 39.0 | 1 | moderate | 0 | 0 | 7809455 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2329 | Seward Park | 47.544366 | -122.268519 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 36.0 | 1 | strict | 0 | 0 | 8409949 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2330 | Seward Park | 47.552437 | -122.270692 | House | 1.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Seward Park | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Pets live on this... | 100.0 | 2 | moderate | 0 | 0 | 2150760 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2331 | Seward Park | 47.559601 | -122.272154 | House | 4.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Seward Park | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 1 | strict | 0 | 0 | 5424448 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2332 | Seward Park | 47.545899 | -122.263749 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 38.0 | 2 | moderate | 1 | 0 | 1606171 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2333 | Seward Park | 47.555084 | -122.264553 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 65.0 | 2 | flexible | 0 | 0 | 136480 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2334 | Seward Park | 47.565426 | -122.276441 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 68.0 | 1 | moderate | 0 | 0 | 4863369 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2335 | Seward Park | 47.547322 | -122.271624 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Free Parking ... | 110.0 | 2 | moderate | 0 | 0 | 7547290 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 |
| 2336 | Seward Park | 47.568165 | -122.274649 | Apartment | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 1 | Seward Park | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 3 | strict | 0 | 0 | 5918259 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2337 | Seward Park | 47.551844 | -122.262283 | House | 2.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Seward Park | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 99.0 | 1 | flexible | 0 | 0 | 5804875 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2338 | Seward Park | 47.543614 | -122.267834 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 34.0 | 1 | strict | 0 | 0 | 8409941 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2339 | Seward Park | 47.544961 | -122.269233 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 41.0 | 1 | strict | 0 | 0 | 8409969 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2340 | Seward Park | 47.565394 | -122.271653 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 98.0 | 2 | moderate | 0 | 0 | 9170870 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2341 | Seward Park | 47.562783 | -122.271917 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Seward Park | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 188.0 | 2 | strict | 0 | 0 | 6168975 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2342 | Seward Park | 47.557083 | -122.275046 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | moderate | 0 | 0 | 7263506 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2343 | Seward Park | 47.560525 | -122.266333 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 80.0 | 2 | moderate | 0 | 0 | 7037522 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2344 | Seward Park | 47.544283 | -122.264316 | House | 4.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Seward Park | Entire home/apt | 8 | 1.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 1 | 1 | 1416763 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2345 | Seward Park | 47.546724 | -122.269903 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Seward Park | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 160.0 | 3 | moderate | 0 | 0 | 3726391 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2346 | Seward Park | 47.565439 | -122.270022 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Seward Park | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 99.0 | 3 | flexible | 0 | 0 | 10188794 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2347 | Seward Park | 47.540797 | -122.265118 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 2 | moderate | 0 | 0 | 3488436 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2348 | Seward Park | 47.547792 | -122.266203 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Seward Park | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 75.0 | 3 | strict | 0 | 0 | 1277033 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2349 | Seward Park | 47.546600 | -122.264522 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Seward Park | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 65.0 | 1 | flexible | 1 | 1 | 5241195 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2350 | Seward Park | 47.551704 | -122.269745 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 95.0 | 1 | moderate | 0 | 0 | 2736961 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 |
| 2351 | Seward Park | 47.551811 | -122.267607 | House | 1.0 | Real Bed | within an hour | 86.0 | 100.0 | 0 | Seward Park | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 90.0 | 1 | moderate | 0 | 0 | 4716486 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2352 | Seward Park | 47.555684 | -122.266459 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Seward Park | Entire home/apt | 7 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 250.0 | 1 | moderate | 0 | 0 | 7386675 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2353 | Seward Park | 47.551996 | -122.264722 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 8 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 115.0 | 2 | strict | 0 | 0 | 5240694 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2354 | Seward Park | 47.563961 | -122.273555 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Seward Park | Private room | 4 | 1.5 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 93.0 | 1 | flexible | 0 | 0 | 8566501 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2355 | Seward Park | 47.560003 | -122.273674 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 45.0 | 3 | moderate | 0 | 0 | 7402861 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2356 | Seward Park | 47.555463 | -122.272184 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Seward Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 168.0 | 1 | flexible | 0 | 0 | 741699 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2357 | Seward Park | 47.555818 | -122.265352 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Seward Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 127.0 | 3 | strict | 0 | 0 | 6108006 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2358 | Seward Park | 47.545597 | -122.269792 | House | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 35.0 | 1 | strict | 0 | 0 | 8409962 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2359 | Seward Park | 47.558636 | -122.264484 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Seward Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 65.0 | 1 | moderate | 0 | 0 | 5834820 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 2360 | Seward Park | 47.546605 | -122.266682 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Seward Park | Entire home/apt | 7 | 3.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 279.0 | 2 | moderate | 0 | 0 | 6741135 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2361 | Seward Park | 47.562772 | -122.272854 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seward Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 93.0 | 2 | moderate | 0 | 0 | 6555393 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2362 | Seward Park | 47.561681 | -122.272123 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Seward Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 65.0 | 2 | moderate | 0 | 0 | 67270 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 |
| 2363 | Seward Park | 47.550605 | -122.268129 | House | 5.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Seward Park | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 7 | moderate | 0 | 0 | 7005538 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2364 | Seward Park | 47.553513 | -122.261610 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Seward Park | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 375.0 | 2 | strict | 0 | 0 | 1827586 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2365 | Delridge | 47.566547 | -122.365442 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | North Delridge | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 85.0 | 1 | flexible | 0 | 0 | 7900497 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2366 | Delridge | 47.564861 | -122.369352 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Delridge | Private room | 2 | 1.5 | 1.0 | TV,Kitchen,"Free Parking on Premises","Pets Al... | 50.0 | 1 | flexible | 0 | 0 | 8157486 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2367 | Delridge | 47.556260 | -122.363310 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North Delridge | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 55.0 | 1 | flexible | 0 | 0 | 4809486 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2368 | Delridge | 47.568450 | -122.362067 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 35.0 | 1 | flexible | 0 | 0 | 9849122 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2369 | Delridge | 47.561387 | -122.363915 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Delridge | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 1 | flexible | 0 | 0 | 9351911 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2370 | Delridge | 47.562106 | -122.361731 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | North Delridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 2 | flexible | 0 | 0 | 3993960 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2371 | Delridge | 47.556912 | -122.362250 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 3 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 70.0 | 1 | moderate | 0 | 0 | 8989807 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2372 | Delridge | 47.561297 | -122.362402 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 65.0 | 1 | moderate | 0 | 0 | 5299060 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2373 | Delridge | 47.562359 | -122.360278 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North Delridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 99.0 | 2 | moderate | 0 | 0 | 3115801 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2374 | Delridge | 47.560518 | -122.362536 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 75.0 | 5 | flexible | 0 | 0 | 9153365 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2375 | Delridge | 47.564038 | -122.373526 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Delridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 10015967 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2376 | Delridge | 47.567830 | -122.370046 | Apartment | 2.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | North Delridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 129.0 | 2 | strict | 0 | 0 | 284480 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2377 | Delridge | 47.560596 | -122.361747 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 4 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 1 | moderate | 0 | 0 | 4916433 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2378 | Delridge | 47.562119 | -122.361218 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | North Delridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 2 | flexible | 0 | 0 | 1732441 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2379 | Delridge | 47.564959 | -122.372355 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 95.0 | 2 | strict | 0 | 0 | 2652941 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2380 | Delridge | 47.564163 | -122.366708 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Delridge | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 69.0 | 1 | moderate | 0 | 0 | 2809796 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2381 | Delridge | 47.563798 | -122.362456 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | North Delridge | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 42.0 | 1 | flexible | 0 | 0 | 9477539 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2382 | Delridge | 47.554318 | -122.375528 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | North Delridge | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 70.0 | 1 | flexible | 0 | 0 | 4479426 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2383 | Delridge | 47.566854 | -122.365438 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 55.0 | 1 | strict | 0 | 0 | 8276416 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2384 | Delridge | 47.558181 | -122.363045 | House | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | North Delridge | Private room | 1 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 47.0 | 1 | strict | 1 | 1 | 486344 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2385 | Delridge | 47.566126 | -122.366581 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 148.0 | 2 | moderate | 0 | 0 | 1980395 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2386 | Delridge | 47.553743 | -122.364235 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 95.0 | 1 | moderate | 0 | 0 | 7239217 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2387 | Delridge | 47.564584 | -122.366309 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Private room | 2 | 2.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 49.0 | 1 | flexible | 0 | 0 | 1328159 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2388 | Delridge | 47.565874 | -122.368303 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North Delridge | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 65.0 | 1 | strict | 0 | 0 | 5838129 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 |
| 2389 | Delridge | 47.565572 | -122.370420 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 9664395 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2390 | Delridge | 47.557660 | -122.376067 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet","Free Parking on Premises"... | 58.0 | 1 | moderate | 0 | 0 | 4681687 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2391 | Delridge | 47.558161 | -122.361197 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Delridge | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | moderate | 0 | 0 | 4264012 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2392 | Delridge | 47.569658 | -122.361711 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | North Delridge | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,G... | 129.0 | 2 | moderate | 1 | 1 | 445199 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2393 | Delridge | 47.568535 | -122.370639 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Delridge | Entire home/apt | 3 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 95.0 | 1 | flexible | 0 | 0 | 7514366 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2394 | Delridge | 47.561883 | -122.365489 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Delridge | Private room | 3 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning","Fre... | 49.0 | 2 | strict | 0 | 0 | 5236979 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 2395 | Delridge | 47.557819 | -122.363482 | House | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | North Delridge | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 85.0 | 1 | flexible | 1 | 1 | 8555304 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2396 | Delridge | 47.568365 | -122.356860 | Apartment | 2.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | North Delridge | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 2 | strict | 0 | 0 | 8847951 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2397 | Northgate | 47.696086 | -122.318250 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 59.0 | 2 | flexible | 0 | 0 | 3124383 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2398 | Northgate | 47.702592 | -122.322826 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,Kitchen,"Free Parking o... | 55.0 | 1 | strict | 0 | 0 | 5863446 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2399 | Northgate | 47.693453 | -122.307656 | House | 1.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Maple Leaf | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 55.0 | 1 | strict | 0 | 0 | 9155422 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2400 | Northgate | 47.707072 | -122.319481 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 51.0 | 1 | flexible | 0 | 0 | 5047188 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2401 | Northgate | 47.694949 | -122.319888 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Maple Leaf | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 0 | 0 | 5825701 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2402 | Northgate | 47.694687 | -122.306482 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Maple Leaf | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | moderate | 0 | 0 | 5499882 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2403 | Northgate | 47.696217 | -122.315765 | Apartment | 1.0 | Pull-out Sofa | within a few hours | 90.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 79.0 | 1 | flexible | 0 | 0 | 7529124 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2404 | Northgate | 47.698188 | -122.316241 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 90.0 | 1 | flexible | 0 | 0 | 7995944 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2405 | Northgate | 47.704383 | -122.322102 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 1 | Maple Leaf | Shared room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 30.0 | 2 | strict | 0 | 0 | 5538874 | 10.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2406 | Northgate | 47.706836 | -122.321585 | Apartment | 1.0 | Futon | within a day | 80.0 | 100.0 | 0 | Maple Leaf | Shared room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 35.0 | 1 | flexible | 0 | 0 | 4941356 | 9.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2407 | Northgate | 47.694293 | -122.312560 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 45.0 | 1 | flexible | 0 | 0 | 7679928 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2408 | Northgate | 47.695719 | -122.311944 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 2 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 60.0 | 2 | moderate | 0 | 0 | 10385 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2409 | Northgate | 47.698331 | -122.321574 | Tent | 1.0 | Airbed | 0 | 0.0 | 0.0 | 0 | Maple Leaf | Private room | 1 | 0.0 | 1.0 | "Smoke Detector","Carbon Monoxide Detector","F... | 50.0 | 1 | flexible | 0 | 0 | 4507137 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 2410 | Northgate | 47.707659 | -122.321628 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Maple Leaf | Entire home/apt | 5 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 95.0 | 1 | strict | 0 | 0 | 7653539 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2411 | Northgate | 47.703950 | -122.322886 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 64.0 | 1 | moderate | 0 | 0 | 5863558 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2412 | Northgate | 47.700068 | -122.306017 | House | 2.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 51.0 | 1 | flexible | 0 | 0 | 8472954 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2413 | Northgate | 47.703883 | -122.315893 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 75.0 | 2 | flexible | 0 | 0 | 7952930 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2414 | Northgate | 47.703437 | -122.325707 | Apartment | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 94.0 | 2 | strict | 0 | 0 | 8556665 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2415 | Northgate | 47.693493 | -122.306326 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Maple Leaf | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 3 | moderate | 0 | 0 | 5500752 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2416 | Northgate | 47.707465 | -122.319477 | Apartment | 2.0 | Airbed | within a day | 50.0 | 0.0 | 0 | Maple Leaf | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 90.0 | 1 | flexible | 0 | 0 | 9048029 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 2417 | Northgate | 47.697418 | -122.324752 | House | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Maple Leaf | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 69.0 | 1 | moderate | 0 | 0 | 4423130 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2418 | Northgate | 47.699978 | -122.307738 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 8 | 1.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 139.0 | 1 | flexible | 0 | 0 | 8473056 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2419 | Northgate | 47.704379 | -122.320857 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Maple Leaf | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 55.0 | 3 | strict | 0 | 0 | 2071305 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2420 | Northgate | 47.694452 | -122.325819 | Camper/RV | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 50.0 | 2 | moderate | 1 | 1 | 817115 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2421 | Northgate | 47.698723 | -122.311347 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 3 | 1.0 | 1.0 | "Free Parking on Premises","Indoor Fireplace",... | 120.0 | 2 | moderate | 0 | 0 | 6895132 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2422 | Northgate | 47.693166 | -122.306129 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Maple Leaf | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 59.0 | 1 | strict | 0 | 0 | 8255196 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2423 | Northgate | 47.692887 | -122.307796 | Apartment | 3.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 3 | strict | 0 | 0 | 5051529 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2424 | Northgate | 47.700543 | -122.317412 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Maple Leaf | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | moderate | 0 | 0 | 5337848 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2425 | Northgate | 47.695386 | -122.313075 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 137.0 | 2 | moderate | 0 | 0 | 20868 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2426 | Northgate | 47.693102 | -122.308631 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 67.0 | 1 | flexible | 0 | 0 | 8385444 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2427 | Northgate | 47.691543 | -122.327288 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Maple Leaf | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 2 | strict | 0 | 0 | 637326 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2428 | Northgate | 47.703965 | -122.320761 | Condominium | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 1 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 65.0 | 1 | moderate | 0 | 0 | 6557767 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2429 | Northgate | 47.702988 | -122.322697 | House | 1.0 | Couch | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Shared room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 37.0 | 1 | moderate | 0 | 0 | 4869458 | 10.000000 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2430 | Northgate | 47.698293 | -122.321140 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Maple Leaf | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 65.0 | 3 | moderate | 0 | 0 | 5319948 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2431 | Northgate | 47.697178 | -122.311744 | Other | 1.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 130.0 | 2 | flexible | 0 | 0 | 7638282 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2432 | Northgate | 47.695737 | -122.313163 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 2 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 60.0 | 2 | moderate | 0 | 0 | 11411 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2433 | Northgate | 47.696531 | -122.317259 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 79.0 | 1 | strict | 0 | 1 | 723846 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2434 | Northgate | 47.690908 | -122.310483 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 72.0 | 2 | moderate | 0 | 0 | 10104370 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2435 | Northgate | 47.694986 | -122.306106 | Apartment | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Maple Leaf | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 95.0 | 3 | strict | 0 | 0 | 5041669 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2436 | Northgate | 47.692767 | -122.328645 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Maple Leaf | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 2 | moderate | 0 | 0 | 2197982 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2437 | Northgate | 47.697201 | -122.313481 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Maple Leaf | Private room | 4 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 109.0 | 2 | moderate | 0 | 0 | 10695 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2438 | Northgate | 47.707671 | -122.323620 | Apartment | 2.0 | Pull-out Sofa | 0 | 0.0 | 0.0 | 0 | Maple Leaf | Shared room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 50.0 | 1 | flexible | 0 | 0 | 6005222 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2439 | Other neighborhoods | 47.670358 | -122.290431 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 85.0 | 2 | strict | 0 | 0 | 3317940 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2440 | Other neighborhoods | 47.673330 | -122.290921 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 5 | strict | 0 | 0 | 8099917 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2441 | Other neighborhoods | 47.666404 | -122.299234 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 98.0 | 2 | flexible | 0 | 0 | 8617171 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2442 | Other neighborhoods | 47.681507 | -122.303516 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 109.0 | 1 | moderate | 0 | 0 | 4181226 | 8.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2443 | Other neighborhoods | 47.679928 | -122.310433 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 28.0 | 6 | strict | 0 | 0 | 7074024 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2444 | Other neighborhoods | 47.667496 | -122.295443 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 1 | 2.5 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 39.0 | 1 | moderate | 0 | 0 | 2729077 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2445 | Other neighborhoods | 47.680584 | -122.306261 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 91.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 63.0 | 1 | flexible | 0 | 0 | 7483750 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 |
| 2446 | Other neighborhoods | 47.679000 | -122.300838 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Ravenna | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 35.0 | 1 | flexible | 0 | 0 | 9030929 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2447 | Other neighborhoods | 47.665691 | -122.295840 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 42.0 | 2 | strict | 0 | 0 | 1764233 | 7.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2448 | Other neighborhoods | 47.680182 | -122.309774 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 29.0 | 6 | strict | 0 | 0 | 6218849 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2449 | Other neighborhoods | 47.677677 | -122.296507 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 70.0 | 2 | strict | 0 | 0 | 4030600 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2450 | Other neighborhoods | 47.672327 | -122.291451 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 74.0 | 2 | flexible | 0 | 0 | 4637801 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2451 | Other neighborhoods | 47.681278 | -122.307334 | House | 1.0 | Real Bed | within an hour | 86.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | moderate | 0 | 0 | 2056276 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2452 | Other neighborhoods | 47.666440 | -122.298503 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 85.0 | 2 | strict | 0 | 0 | 6214998 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2453 | Other neighborhoods | 47.667594 | -122.298077 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 50.0 | 5 | flexible | 0 | 0 | 9168049 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2454 | Other neighborhoods | 47.677107 | -122.302055 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Ravenna | Entire home/apt | 2 | 1.0 | 1.0 | Kitchen,"Pets Allowed",Heating,"Family/Kid Fri... | 125.0 | 1 | flexible | 0 | 0 | 10211928 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2455 | Other neighborhoods | 47.676753 | -122.293972 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 93.0 | 2 | flexible | 1 | 1 | 387464 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2456 | Other neighborhoods | 47.675634 | -122.295687 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 86.0 | 2 | moderate | 0 | 0 | 53867 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2457 | Other neighborhoods | 47.676735 | -122.299825 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 3 | flexible | 0 | 0 | 3146212 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2458 | Other neighborhoods | 47.669624 | -122.299964 | House | 6.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 280.0 | 3 | strict | 0 | 0 | 107046 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2459 | Other neighborhoods | 47.674433 | -122.293995 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 138.0 | 5 | strict | 0 | 0 | 4629020 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2460 | Other neighborhoods | 47.676616 | -122.299047 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Ravenna | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Wheelchair Acces... | 100.0 | 1 | moderate | 0 | 0 | 4324317 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2461 | Other neighborhoods | 47.685334 | -122.301052 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 45.0 | 3 | strict | 0 | 0 | 6629278 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2462 | Other neighborhoods | 47.676336 | -122.307486 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 39.0 | 2 | strict | 0 | 0 | 8958290 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2463 | Other neighborhoods | 47.675452 | -122.301420 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 127.0 | 2 | strict | 0 | 0 | 6676926 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2464 | Other neighborhoods | 47.663764 | -122.293609 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 2.0 | "Wireless Internet","Pets live on this propert... | 110.0 | 1 | flexible | 0 | 0 | 7934356 | 8.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 2465 | Other neighborhoods | 47.678142 | -122.297123 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 40.0 | 3 | strict | 0 | 0 | 4701141 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2466 | Other neighborhoods | 47.670995 | -122.297897 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Private room | 1 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 40.0 | 2 | moderate | 0 | 0 | 7274556 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2467 | Other neighborhoods | 47.665400 | -122.295067 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Indoor... | 90.0 | 5 | flexible | 0 | 0 | 9186681 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2468 | Other neighborhoods | 47.668838 | -122.299326 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 125.0 | 2 | moderate | 0 | 0 | 6907671 | 8.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2469 | Other neighborhoods | 47.666062 | -122.296492 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 39.0 | 3 | moderate | 0 | 0 | 1534622 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2470 | Other neighborhoods | 47.664286 | -122.300831 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 80.0 | 8 | flexible | 0 | 0 | 6627129 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2471 | Other neighborhoods | 47.681086 | -122.307444 | House | 3.0 | Real Bed | within an hour | 86.0 | 100.0 | 0 | Ravenna | Entire home/apt | 8 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 325.0 | 1 | moderate | 0 | 0 | 1750010 | 8.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2472 | Other neighborhoods | 47.668438 | -122.298572 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 2 | moderate | 0 | 0 | 5805162 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2473 | Other neighborhoods | 47.668422 | -122.298793 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Ravenna | Entire home/apt | 6 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 115.0 | 2 | strict | 0 | 0 | 1136522 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2474 | Other neighborhoods | 47.680597 | -122.307358 | House | 4.0 | Real Bed | within an hour | 86.0 | 100.0 | 0 | Ravenna | Entire home/apt | 8 | 1.0 | 3.0 | "Wireless Internet","Wheelchair Accessible",Ki... | 245.0 | 1 | moderate | 0 | 0 | 4892529 | 7.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2475 | Other neighborhoods | 47.679033 | -122.311961 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 69.0 | 1 | strict | 0 | 0 | 2420536 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2476 | Other neighborhoods | 47.673998 | -122.293579 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 129.0 | 2 | moderate | 0 | 0 | 6612940 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2477 | Other neighborhoods | 47.678472 | -122.310953 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 28.0 | 6 | strict | 0 | 0 | 5471427 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 2478 | Other neighborhoods | 47.680510 | -122.311535 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 49.0 | 2 | strict | 0 | 0 | 8714974 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2479 | Other neighborhoods | 47.673605 | -122.292172 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 3 | strict | 0 | 0 | 8101791 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2480 | Other neighborhoods | 47.668474 | -122.301780 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 105.0 | 2 | moderate | 0 | 0 | 6599960 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2481 | Other neighborhoods | 47.679532 | -122.298808 | House | 1.0 | Pull-out Sofa | within a few hours | 90.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 38.0 | 2 | moderate | 0 | 0 | 8002965 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2482 | Other neighborhoods | 47.679907 | -122.310725 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 130.0 | 5 | strict | 0 | 0 | 8715320 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2483 | Other neighborhoods | 47.666208 | -122.295616 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 39.0 | 1 | moderate | 0 | 0 | 9632775 | 2.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2484 | Other neighborhoods | 47.670564 | -122.297955 | House | 2.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Ravenna | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 80.0 | 5 | strict | 0 | 0 | 5413564 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2485 | Other neighborhoods | 47.675742 | -122.290767 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Ravenna | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 3 | moderate | 0 | 0 | 5340242 | 8.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2486 | Other neighborhoods | 47.670488 | -122.304432 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 3 | flexible | 0 | 0 | 3676779 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2487 | Other neighborhoods | 47.667119 | -122.297679 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 1 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 50.0 | 5 | flexible | 0 | 0 | 9157232 | 8.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2488 | Other neighborhoods | 47.681437 | -122.310449 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 75.0 | 2 | flexible | 0 | 0 | 4208555 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2489 | Other neighborhoods | 47.683008 | -122.299750 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 85.0 | 2 | flexible | 0 | 0 | 7026898 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2490 | Other neighborhoods | 47.680451 | -122.311205 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Wheelchair Accessible",Ki... | 70.0 | 1 | moderate | 0 | 0 | 3766055 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2491 | Other neighborhoods | 47.677583 | -122.300022 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 95.0 | 3 | moderate | 0 | 0 | 8091417 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2492 | Other neighborhoods | 47.664087 | -122.290863 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 8253758 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2493 | Other neighborhoods | 47.681310 | -122.305950 | House | 1.0 | Real Bed | within an hour | 86.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Hot Tub","Indo... | 115.0 | 1 | strict | 0 | 0 | 3126153 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2494 | Other neighborhoods | 47.669206 | -122.296493 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Private room | 1 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 45.0 | 2 | moderate | 0 | 0 | 3434459 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2495 | Other neighborhoods | 47.666429 | -122.298399 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 60.0 | 5 | moderate | 0 | 0 | 7245586 | 5.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2496 | Other neighborhoods | 47.668720 | -122.298860 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 1 | Ravenna | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Wheelchair Acc... | 95.0 | 2 | moderate | 0 | 0 | 5959816 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2497 | Other neighborhoods | 47.678431 | -122.311325 | Other | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 3 | 0.5 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating | 39.0 | 1 | strict | 0 | 0 | 3852117 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2498 | Other neighborhoods | 47.676131 | -122.310125 | Other | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 88.0 | 1 | flexible | 0 | 0 | 7350992 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 2499 | Other neighborhoods | 47.682087 | -122.299079 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 8 | 3.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 175.0 | 4 | strict | 0 | 0 | 3812725 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2500 | Other neighborhoods | 47.679922 | -122.310308 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Fire Exti... | 80.0 | 1 | moderate | 0 | 0 | 4288801 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2501 | Other neighborhoods | 47.678579 | -122.309003 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 35.0 | 6 | strict | 0 | 0 | 5473498 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 2502 | Other neighborhoods | 47.674519 | -122.308917 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Ravenna | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 84.0 | 1 | flexible | 0 | 0 | 5057466 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2503 | Other neighborhoods | 47.666608 | -122.297265 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Ravenna | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 49.0 | 2 | moderate | 0 | 0 | 1541705 | 8.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2504 | Other neighborhoods | 47.672583 | -122.301925 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Ravenna | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 196.0 | 2 | strict | 0 | 0 | 7110923 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2505 | Other neighborhoods | 47.668196 | -122.299466 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Ravenna | Private room | 2 | 2.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 55.0 | 5 | flexible | 0 | 0 | 9067268 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2506 | Delridge | 47.552928 | -122.361800 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Riverview | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 120.0 | 2 | strict | 0 | 0 | 7500000 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2507 | Delridge | 47.544952 | -122.358204 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Riverview | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 55.0 | 2 | moderate | 0 | 0 | 2556794 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2508 | Delridge | 47.540275 | -122.355803 | House | 1.0 | Pull-out Sofa | 0 | 0.0 | 0.0 | 0 | Riverview | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 60.0 | 2 | moderate | 0 | 0 | 6348159 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2509 | Delridge | 47.543497 | -122.351664 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Riverview | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 129.0 | 2 | flexible | 0 | 0 | 5941598 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2510 | Delridge | 47.551029 | -122.360585 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | Riverview | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | moderate | 0 | 0 | 3206305 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2511 | Delridge | 47.551491 | -122.355317 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Riverview | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 70.0 | 2 | strict | 0 | 0 | 3531616 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2512 | Delridge | 47.535304 | -122.355274 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Riverview | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 2 | moderate | 0 | 0 | 3404700 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2513 | Delridge | 47.536604 | -122.356052 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Riverview | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 55.0 | 1 | moderate | 0 | 1 | 533443 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2514 | Capitol Hill | 47.650277 | -122.319191 | Apartment | 2.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 2 | moderate | 0 | 0 | 6214517 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2515 | Capitol Hill | 47.647416 | -122.321375 | House | 5.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 8 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 525.0 | 2 | strict | 0 | 0 | 8036620 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2516 | Capitol Hill | 47.650424 | -122.322017 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Portage Bay | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 1 | flexible | 0 | 0 | 8152764 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2517 | Capitol Hill | 47.644615 | -122.321424 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Portage Bay | Private room | 1 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 2 | moderate | 0 | 0 | 6837751 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2518 | Capitol Hill | 47.645749 | -122.318581 | House | 7.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Portage Bay | Entire home/apt | 10 | 4.0 | 6.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 750.0 | 3 | strict | 0 | 0 | 2459519 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2519 | Capitol Hill | 47.646461 | -122.317041 | House | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 2 | flexible | 0 | 0 | 4940379 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2520 | Capitol Hill | 47.650295 | -122.320631 | Other | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Portage Bay | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 2413338 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2521 | Capitol Hill | 47.645867 | -122.321416 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 10 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 380.0 | 1 | strict | 0 | 0 | 2332949 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2522 | Capitol Hill | 47.644212 | -122.322699 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Portage Bay | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 130.0 | 2 | moderate | 0 | 0 | 6543683 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2523 | Capitol Hill | 47.647422 | -122.322004 | Apartment | 1.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 2 | moderate | 0 | 0 | 4340410 | 8.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2524 | Capitol Hill | 47.647288 | -122.319455 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 257.0 | 1 | strict | 0 | 0 | 7003848 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2525 | Capitol Hill | 47.650442 | -122.321980 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 90.0 | 1 | flexible | 0 | 0 | 3479851 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2526 | Capitol Hill | 47.651125 | -122.320431 | Apartment | 3.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 2 | moderate | 0 | 0 | 5104918 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2527 | Other neighborhoods | 47.663548 | -122.285938 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Bryant | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets Allowed","In... | 66.0 | 1 | strict | 1 | 1 | 1386306 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2528 | Other neighborhoods | 47.664502 | -122.283815 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Bryant | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 65.0 | 3 | strict | 1 | 1 | 486829 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2529 | Other neighborhoods | 47.665596 | -122.284668 | House | 1.0 | Pull-out Sofa | within a day | 60.0 | 100.0 | 0 | Bryant | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Family/K... | 60.0 | 2 | flexible | 0 | 0 | 3604904 | 9.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2530 | Other neighborhoods | 47.669143 | -122.279867 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Bryant | Entire home/apt | 4 | 3.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 295.0 | 3 | flexible | 0 | 0 | 1450262 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2531 | Other neighborhoods | 47.666394 | -122.288173 | Bungalow | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 79.0 | 1 | strict | 0 | 0 | 9995551 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2532 | Other neighborhoods | 47.668360 | -122.289589 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 1 | moderate | 0 | 0 | 8849095 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2533 | Other neighborhoods | 47.665094 | -122.284049 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Bryant | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 58.0 | 1 | moderate | 1 | 1 | 7742525 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2534 | Other neighborhoods | 47.668464 | -122.282989 | House | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Bryant | Entire home/apt | 6 | 2.0 | 3.0 | 250.0 | 2 | flexible | 0 | 0 | 4550199 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2535 | Other neighborhoods | 47.673478 | -122.288110 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Bryant | Private room | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 50.0 | 1 | flexible | 0 | 0 | 2822984 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2536 | Other neighborhoods | 47.672077 | -122.282816 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Bryant | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 89.0 | 1 | moderate | 0 | 1 | 202260 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2537 | Other neighborhoods | 47.681446 | -122.286673 | House | 1.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Bryant | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 47.0 | 1 | flexible | 0 | 0 | 8597687 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2538 | Other neighborhoods | 47.669752 | -122.287508 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 189.0 | 2 | moderate | 0 | 0 | 2309250 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2539 | Other neighborhoods | 47.666007 | -122.286745 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Bryant | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 175.0 | 2 | strict | 0 | 0 | 7420339 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2540 | Other neighborhoods | 47.661991 | -122.290729 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 95.0 | 2 | strict | 0 | 0 | 1742425 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2541 | Other neighborhoods | 47.663059 | -122.289448 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 1 | strict | 0 | 0 | 4559985 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2542 | Other neighborhoods | 47.681187 | -122.289257 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 3 | moderate | 0 | 0 | 6304139 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2543 | Other neighborhoods | 47.676351 | -122.289499 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Bryant | Entire home/apt | 3 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 65.0 | 3 | moderate | 0 | 0 | 2610187 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2544 | Other neighborhoods | 47.663747 | -122.288704 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | strict | 0 | 0 | 8508341 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2545 | Other neighborhoods | 47.665618 | -122.287881 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 94.0 | 2 | strict | 0 | 0 | 7327623 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2546 | Other neighborhoods | 47.668065 | -122.284536 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Bryant | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 109.0 | 1 | strict | 0 | 0 | 2412633 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2547 | Other neighborhoods | 47.664428 | -122.286193 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Bryant | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 62.0 | 1 | strict | 1 | 1 | 4205026 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2548 | Other neighborhoods | 47.670608 | -122.287848 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bryant | Entire home/apt | 3 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | moderate | 0 | 0 | 7858454 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2549 | Other neighborhoods | 47.667804 | -122.287738 | House | 3.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Bryant | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 185.0 | 2 | strict | 0 | 0 | 9299824 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2550 | Other neighborhoods | 47.665664 | -122.285677 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Bryant | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 64.0 | 1 | strict | 1 | 1 | 656909 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2551 | Other neighborhoods | 47.672343 | -122.283291 | House | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 1 | Bryant | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 100.0 | 1 | flexible | 0 | 0 | 6728419 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 2552 | Other neighborhoods | 47.662923 | -122.289004 | House | 4.0 | Real Bed | within a few hours | 71.0 | 0.0 | 0 | Bryant | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 7 | flexible | 0 | 0 | 8766231 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2553 | Other neighborhoods | 47.669118 | -122.285046 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bryant | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 45.0 | 2 | flexible | 0 | 0 | 9110560 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2554 | Other neighborhoods | 47.671785 | -122.287678 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Bryant | Entire home/apt | 3 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 180.0 | 1 | strict | 0 | 0 | 4599119 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2555 | Other neighborhoods | 47.669640 | -122.281996 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Bryant | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 60.0 | 1 | flexible | 0 | 0 | 10043487 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 2556 | Capitol Hill | 47.639658 | -122.304632 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Montlake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 125.0 | 2 | moderate | 0 | 0 | 3646393 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 2557 | Capitol Hill | 47.637667 | -122.315304 | House | 4.0 | Real Bed | within a day | 83.0 | 100.0 | 0 | Montlake | Entire home/apt | 8 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 415.0 | 2 | strict | 0 | 0 | 6537432 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2558 | Capitol Hill | 47.636504 | -122.319305 | House | 3.0 | Real Bed | within an hour | 96.0 | 100.0 | 0 | Montlake | Entire home/apt | 7 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 129.0 | 1 | moderate | 0 | 0 | 1950446 | 8.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2559 | Capitol Hill | 47.639729 | -122.301218 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Montlake | Entire home/apt | 5 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 130.0 | 2 | moderate | 0 | 1 | 9519968 | 7.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2560 | Capitol Hill | 47.637131 | -122.302714 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Montlake | Private room | 2 | 0.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 55.0 | 2 | moderate | 0 | 0 | 8507062 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2561 | Capitol Hill | 47.640128 | -122.315259 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Montlake | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 160.0 | 2 | strict | 0 | 0 | 4454121 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2562 | Capitol Hill | 47.636394 | -122.302401 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Montlake | Private room | 2 | 0.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 55.0 | 2 | moderate | 0 | 0 | 8505940 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2563 | Capitol Hill | 47.639757 | -122.322252 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Montlake | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | flexible | 0 | 0 | 1012003 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2564 | Capitol Hill | 47.639929 | -122.318714 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Montlake | Entire home/apt | 7 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 260.0 | 2 | strict | 0 | 0 | 7024684 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2565 | Capitol Hill | 47.638028 | -122.318600 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Montlake | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 110.0 | 3 | moderate | 0 | 0 | 6938542 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2566 | Capitol Hill | 47.637444 | -122.314427 | House | 5.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Montlake | Entire home/apt | 9 | 2.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 750.0 | 2 | strict | 0 | 0 | 2350464 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2567 | Capitol Hill | 47.638493 | -122.300497 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Montlake | Private room | 2 | 1.0 | 1.0 | Internet,Kitchen,"Free Parking on Premises","P... | 55.0 | 2 | flexible | 0 | 1 | 10281965 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2568 | Capitol Hill | 47.638772 | -122.318436 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Montlake | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Free Parking o... | 89.0 | 2 | moderate | 0 | 1 | 63308 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2569 | Capitol Hill | 47.640367 | -122.315849 | Treehouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Montlake | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 2 | strict | 0 | 0 | 3352685 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2570 | Capitol Hill | 47.637775 | -122.319984 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Montlake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | flexible | 0 | 0 | 9368950 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2571 | Capitol Hill | 47.640031 | -122.298503 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Montlake | Entire home/apt | 9 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 400.0 | 2 | strict | 0 | 0 | 6386210 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2572 | Capitol Hill | 47.636585 | -122.315885 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Montlake | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 100.0 | 2 | moderate | 0 | 0 | 2385623 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2573 | Capitol Hill | 47.637992 | -122.304008 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Montlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 5006092 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2574 | Capitol Hill | 47.640334 | -122.305261 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Montlake | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | moderate | 0 | 0 | 7070169 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2575 | Capitol Hill | 47.614861 | -122.315468 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 50.0 | 1 | flexible | 0 | 0 | 7988792 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2576 | Capitol Hill | 47.624138 | -122.327276 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | TV,Internet,Kitchen,"Elevator in Building",Was... | 59.0 | 1 | strict | 0 | 0 | 6335327 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2577 | Capitol Hill | 47.621059 | -122.328220 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 122.0 | 1 | moderate | 0 | 0 | 3858725 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2578 | Capitol Hill | 47.628366 | -122.326260 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 4 | moderate | 0 | 0 | 385438 | 8.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2579 | Capitol Hill | 47.619664 | -122.319116 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 69.0 | 1 | strict | 0 | 0 | 3615614 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2580 | Capitol Hill | 47.624320 | -122.326086 | Apartment | 2.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 150.0 | 1 | flexible | 0 | 0 | 8339580 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2581 | Capitol Hill | 47.616380 | -122.317866 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Kitchen,"Smoke Detector",Essentials,Shampoo | 80.0 | 1 | flexible | 0 | 0 | 9480029 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2582 | Capitol Hill | 47.621686 | -122.320619 | Apartment | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 95.0 | 2 | strict | 0 | 0 | 139463 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2583 | Capitol Hill | 47.618171 | -122.323444 | Condominium | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | moderate | 0 | 0 | 7957689 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2584 | Capitol Hill | 47.620021 | -122.322809 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 175.0 | 1 | moderate | 0 | 0 | 6646894 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2585 | Capitol Hill | 47.615067 | -122.325609 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 1 | flexible | 0 | 0 | 8907548 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2586 | Capitol Hill | 47.614181 | -122.314070 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Famil... | 195.0 | 3 | strict | 0 | 0 | 3551668 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2587 | Capitol Hill | 47.622511 | -122.320515 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 145.0 | 1 | strict | 1 | 1 | 2357110 | 8.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2588 | Capitol Hill | 47.620728 | -122.321097 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 100.0 | 1 | flexible | 0 | 0 | 7784802 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2589 | Capitol Hill | 47.624748 | -122.320326 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 0.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Buzze... | 90.0 | 2 | flexible | 0 | 0 | 10210625 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2590 | Capitol Hill | 47.619734 | -122.322741 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 150.0 | 1 | flexible | 0 | 0 | 9137469 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2591 | Capitol Hill | 47.627053 | -122.319545 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 9 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 550.0 | 2 | strict | 0 | 0 | 6032726 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2592 | Capitol Hill | 47.614953 | -122.319412 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 162.0 | 2 | flexible | 0 | 0 | 7802266 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2593 | Capitol Hill | 47.623791 | -122.316514 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Smoke Detector","Carbo... | 75.0 | 1 | flexible | 0 | 0 | 10250735 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
| 2594 | Capitol Hill | 47.626874 | -122.320518 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 185.0 | 5 | moderate | 0 | 0 | 7496485 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2595 | Capitol Hill | 47.633492 | -122.322303 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 50.0 | 1 | flexible | 0 | 0 | 7638263 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2596 | Capitol Hill | 47.617556 | -122.314189 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 130.0 | 2 | flexible | 0 | 0 | 7421950 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2597 | Capitol Hill | 47.624564 | -122.316615 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 230.0 | 3 | flexible | 0 | 0 | 8356608 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2598 | Capitol Hill | 47.622029 | -122.313870 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 79.0 | 2 | flexible | 0 | 0 | 1354750 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2599 | Capitol Hill | 47.623534 | -122.315566 | Apartment | 1.0 | Pull-out Sofa | within a few hours | 90.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | moderate | 0 | 0 | 2687172 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2600 | Capitol Hill | 47.622230 | -122.314092 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 70.0 | 1 | moderate | 0 | 0 | 3498114 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2601 | Capitol Hill | 47.623220 | -122.315236 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | moderate | 0 | 0 | 9580021 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2602 | Capitol Hill | 47.623800 | -122.319034 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | strict | 0 | 0 | 9994758 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2603 | Capitol Hill | 47.616271 | -122.325999 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 95.0 | 1 | flexible | 0 | 0 | 10035274 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 2604 | Capitol Hill | 47.620977 | -122.316079 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 62.0 | 2 | moderate | 0 | 0 | 8369321 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2605 | Capitol Hill | 47.622856 | -122.317090 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 1 | moderate | 0 | 0 | 7500191 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2606 | Capitol Hill | 47.613138 | -122.317538 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 149.0 | 1 | moderate | 0 | 0 | 6870575 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2607 | Capitol Hill | 47.619822 | -122.318816 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Buzze... | 139.0 | 1 | flexible | 0 | 0 | 8594717 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2608 | Capitol Hill | 47.621421 | -122.316420 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 3 | strict | 0 | 0 | 134091 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2609 | Capitol Hill | 47.614216 | -122.325532 | Apartment | 1.0 | Real Bed | within a few hours | 89.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises",Breakfast,"... | 148.0 | 1 | moderate | 0 | 0 | 8473625 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2610 | Capitol Hill | 47.615967 | -122.326938 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 79.0 | 2 | strict | 1 | 0 | 258571 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2611 | Capitol Hill | 47.625715 | -122.317310 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9473967 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2612 | Capitol Hill | 47.623214 | -122.320022 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 6 | 2.5 | 2.0 | "Cable TV",Internet,"Wireless Internet","Air C... | 147.0 | 2 | moderate | 0 | 0 | 890677 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2613 | Capitol Hill | 47.623299 | -122.317168 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 8 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 256.0 | 2 | moderate | 0 | 0 | 4211081 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2614 | Capitol Hill | 47.616495 | -122.327084 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 129.0 | 1 | moderate | 0 | 0 | 7843995 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2615 | Capitol Hill | 47.625245 | -122.316494 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 1 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 59.0 | 1 | moderate | 0 | 0 | 9494623 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2616 | Capitol Hill | 47.617042 | -122.326864 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 79.0 | 2 | strict | 1 | 0 | 882274 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2617 | Capitol Hill | 47.616620 | -122.323714 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Gym,"Elev... | 150.0 | 1000 | moderate | 0 | 0 | 3594885 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2618 | Capitol Hill | 47.622167 | -122.316873 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 175.0 | 6 | strict | 0 | 0 | 1768883 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2619 | Capitol Hill | 47.627957 | -122.324669 | House | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 2 | moderate | 0 | 0 | 948077 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2620 | Capitol Hill | 47.615310 | -122.314525 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Kitchen,"Free Parking on Premises",Heating,... | 100.0 | 1 | moderate | 0 | 0 | 4841586 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2621 | Capitol Hill | 47.617184 | -122.318290 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 75.0 | 7 | moderate | 0 | 0 | 5640214 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2622 | Capitol Hill | 47.625626 | -122.318077 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9011350 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2623 | Capitol Hill | 47.618534 | -122.318508 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 103.0 | 3 | moderate | 0 | 0 | 5695717 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2624 | Capitol Hill | 47.616016 | -122.323536 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 80.0 | 2 | moderate | 0 | 0 | 4718921 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2625 | Capitol Hill | 47.619677 | -122.324147 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 90.0 | 2 | moderate | 1 | 1 | 557126 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2626 | Capitol Hill | 47.619182 | -122.325793 | Apartment | 1.0 | Airbed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 150.0 | 1 | moderate | 0 | 0 | 8053554 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2627 | Capitol Hill | 47.620875 | -122.318054 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Heating,Washer,Dr... | 69.0 | 2 | moderate | 0 | 0 | 2488228 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2628 | Capitol Hill | 47.616250 | -122.322292 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 120.0 | 1 | flexible | 0 | 0 | 6865200 | 8.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2629 | Capitol Hill | 47.618159 | -122.319185 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | 65.0 | 2 | flexible | 0 | 0 | 8779676 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2630 | Capitol Hill | 47.615714 | -122.328089 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 1 | moderate | 0 | 0 | 9929059 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2631 | Capitol Hill | 47.615412 | -122.324968 | Condominium | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 2 | strict | 0 | 0 | 8919372 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2632 | Capitol Hill | 47.636983 | -122.321733 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 395.0 | 4 | flexible | 0 | 0 | 8257837 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2633 | Capitol Hill | 47.614191 | -122.323892 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 98.0 | 1 | moderate | 0 | 0 | 4607830 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2634 | Capitol Hill | 47.625456 | -122.321742 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 8 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 325.0 | 1 | strict | 1 | 1 | 1545801 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2635 | Capitol Hill | 47.623795 | -122.319751 | Apartment | 2.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | moderate | 0 | 0 | 4129218 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2636 | Capitol Hill | 47.620469 | -122.318635 | Apartment | 1.0 | Real Bed | within a few hours | 78.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 110.0 | 2 | flexible | 0 | 0 | 6390214 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2637 | Capitol Hill | 47.623557 | -122.315150 | Apartment | 2.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 70.0 | 1 | moderate | 0 | 0 | 9757138 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2638 | Capitol Hill | 47.616407 | -122.327690 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 210.0 | 1 | strict | 0 | 0 | 7872980 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2639 | Capitol Hill | 47.623831 | -122.319304 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 49.0 | 2 | flexible | 1 | 1 | 458191 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 2640 | Capitol Hill | 47.624421 | -122.317179 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 120.0 | 1 | flexible | 0 | 0 | 7725597 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2641 | Capitol Hill | 47.623036 | -122.326477 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | Kitchen,"Pets live on this property",Cat(s),He... | 210.0 | 1 | moderate | 0 | 0 | 4660517 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2642 | Capitol Hill | 47.621990 | -122.322255 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 62.0 | 2 | moderate | 0 | 0 | 3426639 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2643 | Capitol Hill | 47.626964 | -122.323273 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 4 | 2.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 70.0 | 1 | moderate | 0 | 0 | 6118359 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2644 | Capitol Hill | 47.622397 | -122.322500 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 4 | strict | 0 | 0 | 7665114 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2645 | Capitol Hill | 47.619883 | -122.319613 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 8.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 99.0 | 1 | moderate | 0 | 0 | 281789 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 2646 | Capitol Hill | 47.618880 | -122.317957 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 58.0 | 1 | strict | 0 | 0 | 3930270 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2647 | Capitol Hill | 47.620680 | -122.323159 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Smoking Allowe... | 81.0 | 1 | flexible | 0 | 0 | 9016362 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2648 | Capitol Hill | 47.616373 | -122.324608 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 1 | strict | 0 | 0 | 7987846 | 8.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2649 | Capitol Hill | 47.614874 | -122.314177 | Apartment | 1.0 | Real Bed | a few days or more | 25.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Dryer,Esse... | 150.0 | 1 | moderate | 0 | 0 | 3803212 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2650 | Capitol Hill | 47.623430 | -122.322751 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 64.0 | 2 | strict | 0 | 0 | 3424991 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2651 | Capitol Hill | 47.619951 | -122.316647 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 2 | moderate | 0 | 1 | 752483 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2652 | Capitol Hill | 47.622178 | -122.317572 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 155.0 | 1 | moderate | 0 | 0 | 1897000 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2653 | Capitol Hill | 47.620399 | -122.317468 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 135.0 | 1 | flexible | 0 | 0 | 6349598 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2654 | Capitol Hill | 47.617019 | -122.327147 | Apartment | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 2.0 | 2.0 | TV,Pool,Kitchen,"Elevator in Building","Buzzer... | 275.0 | 1 | flexible | 0 | 0 | 4809601 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2655 | Capitol Hill | 47.618107 | -122.322932 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 85.0 | 1 | flexible | 0 | 0 | 9137398 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2656 | Capitol Hill | 47.619453 | -122.321126 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Smoke De... | 85.0 | 1 | flexible | 0 | 0 | 9137075 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2657 | Capitol Hill | 47.617241 | -122.317727 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 75.0 | 2 | strict | 0 | 0 | 1100714 | 8.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2658 | Capitol Hill | 47.626193 | -122.319955 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Washer,Dryer... | 120.0 | 1 | moderate | 0 | 0 | 5977556 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
| 2659 | Capitol Hill | 47.617846 | -122.328095 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 135.0 | 2 | strict | 1 | 1 | 1090449 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2660 | Capitol Hill | 47.621533 | -122.325045 | House | 2.0 | Real Bed | within a few hours | 86.0 | 100.0 | 1 | Broadway | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 3 | strict | 0 | 0 | 4199019 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2661 | Capitol Hill | 47.623883 | -122.319589 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Private room | 2 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 79.0 | 4 | strict | 0 | 0 | 1520593 | 8.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2662 | Capitol Hill | 47.624918 | -122.326038 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 1 | flexible | 0 | 0 | 1928010 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2663 | Capitol Hill | 47.626003 | -122.323306 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 245.0 | 3 | flexible | 0 | 0 | 7177194 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2664 | Capitol Hill | 47.619738 | -122.321010 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 220.0 | 1 | flexible | 0 | 0 | 7635966 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2665 | Capitol Hill | 47.616995 | -122.325485 | Apartment | 1.0 | Real Bed | within a day | 78.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 109.0 | 1 | flexible | 0 | 0 | 6325283 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2666 | Capitol Hill | 47.617942 | -122.316882 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 79.0 | 3 | strict | 0 | 0 | 6644796 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2667 | Capitol Hill | 47.619732 | -122.316815 | Apartment | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 45.0 | 1 | moderate | 0 | 0 | 8053921 | 9.428571 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2668 | Capitol Hill | 47.624248 | -122.318379 | House | 1.0 | Real Bed | within a few hours | 95.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 58.0 | 1 | strict | 0 | 0 | 841049 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 2669 | Capitol Hill | 47.622244 | -122.328488 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | 100.0 | 1 | moderate | 0 | 0 | 7128310 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2670 | Capitol Hill | 47.615843 | -122.325529 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 80.0 | 1 | moderate | 0 | 0 | 7718203 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2671 | Capitol Hill | 47.617062 | -122.325872 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Smoking Allowed",... | 100.0 | 1 | flexible | 0 | 0 | 9774404 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2672 | Capitol Hill | 47.619326 | -122.325820 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 139.0 | 2 | moderate | 0 | 0 | 7789438 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2673 | Capitol Hill | 47.621713 | -122.327262 | Apartment | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.5 | 1.0 | Kitchen,"Elevator in Building",Heating,Washer,... | 169.0 | 1 | flexible | 0 | 0 | 7775663 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2674 | Capitol Hill | 47.620131 | -122.324029 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 114.0 | 1 | flexible | 0 | 0 | 8014547 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2675 | Capitol Hill | 47.620297 | -122.325294 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Breakfast,Heating,... | 85.0 | 3 | strict | 0 | 0 | 1716901 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2676 | Capitol Hill | 47.620663 | -122.324661 | Apartment | 2.0 | Real Bed | within a few hours | 86.0 | 100.0 | 1 | Broadway | Entire home/apt | 7 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 100.0 | 2 | strict | 0 | 0 | 6477225 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2677 | Capitol Hill | 47.621141 | -122.324893 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 125.0 | 3 | strict | 0 | 0 | 2217257 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2678 | Capitol Hill | 47.619870 | -122.323989 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 190.0 | 1 | flexible | 0 | 0 | 7580593 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2679 | Capitol Hill | 47.620565 | -122.325082 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 1828232 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2680 | Capitol Hill | 47.623353 | -122.323069 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 40.0 | 2 | strict | 0 | 0 | 4725935 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2681 | Capitol Hill | 47.622903 | -122.325980 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 40.0 | 1 | flexible | 0 | 0 | 9061439 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2682 | Capitol Hill | 47.623621 | -122.319530 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 53.0 | 4 | strict | 0 | 0 | 6545602 | 10.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2683 | Capitol Hill | 47.617609 | -122.327791 | Apartment | 3.0 | Real Bed | within a few hours | 86.0 | 100.0 | 1 | Broadway | Entire home/apt | 8 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 4 | strict | 0 | 0 | 2688555 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2684 | Capitol Hill | 47.624860 | -122.321068 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 65.0 | 4 | flexible | 0 | 0 | 7984550 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2685 | Capitol Hill | 47.623653 | -122.320904 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 4 | strict | 0 | 0 | 6561753 | 9.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2686 | Capitol Hill | 47.624124 | -122.319976 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 53.0 | 4 | strict | 0 | 0 | 6561811 | 9.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2687 | Capitol Hill | 47.625285 | -122.320090 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 55.0 | 4 | strict | 0 | 0 | 6545246 | 7.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2688 | Capitol Hill | 47.624301 | -122.319154 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 4 | strict | 0 | 0 | 1520501 | 8.714286 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2689 | Capitol Hill | 47.622443 | -122.315741 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 75.0 | 1 | flexible | 0 | 0 | 5618094 | 9.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2690 | Capitol Hill | 47.624650 | -122.316889 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 89.0 | 1 | strict | 0 | 0 | 279063 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2691 | Capitol Hill | 47.620327 | -122.315805 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 90.0 | 2 | moderate | 0 | 0 | 5030361 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2692 | Capitol Hill | 47.623187 | -122.327222 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 1 | flexible | 0 | 0 | 6779893 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2693 | Capitol Hill | 47.622979 | -122.328656 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Air Conditioning",Kitchen,"Free P... | 199.0 | 3 | strict | 0 | 0 | 796594 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2694 | Capitol Hill | 47.628694 | -122.320542 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Smoking ... | 95.0 | 2 | moderate | 1 | 0 | 1030615 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2695 | Capitol Hill | 47.622029 | -122.316355 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Family/Kid Friend... | 89.0 | 1 | strict | 0 | 0 | 6328923 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2696 | Capitol Hill | 47.621642 | -122.326845 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 1 | moderate | 0 | 0 | 7050492 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2697 | Capitol Hill | 47.618852 | -122.326262 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,"Pets Allowed",Cat(s),"Elevator in Bui... | 155.0 | 1 | moderate | 0 | 0 | 2418658 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2698 | Capitol Hill | 47.621778 | -122.323787 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 2 | strict | 0 | 0 | 387078 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2699 | Capitol Hill | 47.614853 | -122.323992 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 25.0 | 1 | flexible | 0 | 0 | 10012724 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2700 | Capitol Hill | 47.614818 | -122.325058 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 159.0 | 1 | flexible | 0 | 0 | 6768768 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2701 | Capitol Hill | 47.618805 | -122.318849 | Apartment | 3.0 | Real Bed | within an hour | 96.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 125.0 | 1 | strict | 0 | 1 | 338043 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2702 | Capitol Hill | 47.616819 | -122.324712 | Apartment | 1.0 | Futon | within a day | 69.0 | 100.0 | 0 | Broadway | Shared room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 25.0 | 1 | moderate | 0 | 0 | 4701205 | 8.714286 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2703 | Capitol Hill | 47.619174 | -122.321849 | Apartment | 3.0 | Real Bed | within an hour | 96.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 225.0 | 1 | strict | 0 | 1 | 338091 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2704 | Capitol Hill | 47.623878 | -122.326250 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 140.0 | 2 | strict | 0 | 0 | 7235573 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2705 | Capitol Hill | 47.628475 | -122.321616 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 89.0 | 2 | flexible | 0 | 0 | 7579854 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2706 | Capitol Hill | 47.622058 | -122.318095 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 190.0 | 2 | moderate | 0 | 0 | 1525972 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2707 | Capitol Hill | 47.622977 | -122.327051 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 99.0 | 1 | moderate | 0 | 0 | 3626497 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2708 | Capitol Hill | 47.623629 | -122.326889 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 49.0 | 2 | strict | 0 | 0 | 8102064 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2709 | Capitol Hill | 47.619531 | -122.315814 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 1 | moderate | 0 | 1 | 447488 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2710 | Capitol Hill | 47.622386 | -122.314767 | House | 1.0 | Real Bed | within a few hours | 95.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 58.0 | 1 | strict | 0 | 0 | 835149 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 2711 | Capitol Hill | 47.620002 | -122.316915 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 1 | moderate | 0 | 0 | 3759039 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2712 | Capitol Hill | 47.621125 | -122.324872 | Apartment | 2.0 | Real Bed | within a few hours | 86.0 | 100.0 | 1 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 150.0 | 3 | strict | 0 | 0 | 6131411 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2713 | Capitol Hill | 47.614911 | -122.326116 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 59.0 | 2 | flexible | 0 | 0 | 4679983 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2714 | Capitol Hill | 47.621695 | -122.326681 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 65.0 | 1 | flexible | 0 | 0 | 7821003 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2715 | Capitol Hill | 47.616690 | -122.323882 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 80.0 | 1 | flexible | 0 | 0 | 9939359 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 |
| 2716 | Capitol Hill | 47.626176 | -122.317625 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9494946 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2717 | Capitol Hill | 47.628244 | -122.319087 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 1 | 0.0 | 1.0 | 75.0 | 1 | flexible | 0 | 0 | 745099 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2718 | Capitol Hill | 47.622415 | -122.312661 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 97.0 | 2 | moderate | 0 | 0 | 8054518 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2719 | Capitol Hill | 47.614791 | -122.323260 | Apartment | 1.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 174.0 | 3 | strict | 0 | 0 | 1141226 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2720 | Capitol Hill | 47.626324 | -122.317083 | House | 2.0 | Real Bed | within a few hours | 95.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 78.0 | 1 | flexible | 0 | 0 | 9866909 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 2721 | Capitol Hill | 47.623607 | -122.317235 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 89.0 | 1 | strict | 0 | 0 | 1790020 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2722 | Capitol Hill | 47.621618 | -122.314765 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 100.0 | 3 | flexible | 0 | 0 | 4277026 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2723 | Capitol Hill | 47.617964 | -122.327027 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 125.0 | 3 | strict | 0 | 0 | 4082250 | 7.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2724 | Capitol Hill | 47.635045 | -122.321017 | House | 2.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 130.0 | 1 | moderate | 0 | 0 | 5637990 | 7.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2725 | Capitol Hill | 47.620687 | -122.327487 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 132.0 | 1 | moderate | 0 | 0 | 2909809 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2726 | Capitol Hill | 47.622137 | -122.325702 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 2 | strict | 0 | 0 | 1356339 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2727 | Capitol Hill | 47.622768 | -122.326168 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 150.0 | 2 | flexible | 0 | 0 | 3884805 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2728 | Capitol Hill | 47.626591 | -122.326756 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 115.0 | 1 | moderate | 0 | 0 | 5395530 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2729 | Capitol Hill | 47.623451 | -122.325865 | Apartment | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 1 | strict | 0 | 0 | 10295151 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2730 | Capitol Hill | 47.620354 | -122.317026 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 99.0 | 1 | strict | 0 | 0 | 6481695 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2731 | Capitol Hill | 47.616771 | -122.317589 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 120.0 | 1 | flexible | 0 | 0 | 5660792 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2732 | Capitol Hill | 47.622343 | -122.315961 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 2 | flexible | 0 | 0 | 7435912 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2733 | Capitol Hill | 47.630101 | -122.313119 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | flexible | 0 | 0 | 4768038 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2734 | Capitol Hill | 47.626081 | -122.325391 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 145.0 | 3 | strict | 0 | 0 | 1416279 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2735 | Capitol Hill | 47.618910 | -122.317571 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,E... | 118.0 | 1 | flexible | 0 | 0 | 9970609 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2736 | Capitol Hill | 47.615539 | -122.324861 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 100.0 | 3 | strict | 0 | 0 | 6835466 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2737 | Capitol Hill | 47.635884 | -122.321857 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 3 | moderate | 0 | 0 | 3418230 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2738 | Capitol Hill | 47.624457 | -122.316171 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 7 | flexible | 0 | 0 | 9843421 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2739 | Capitol Hill | 47.616304 | -122.323575 | Apartment | 1.0 | Real Bed | within a day | 89.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | Internet,Kitchen,"Elevator in Building","Buzze... | 115.0 | 1 | strict | 0 | 0 | 3543791 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2740 | Capitol Hill | 47.622344 | -122.325845 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Kitchen,"Elevator in Building",Heating,"Fam... | 149.0 | 1 | strict | 0 | 0 | 3552006 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2741 | Capitol Hill | 47.621871 | -122.327845 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 59.0 | 1 | moderate | 0 | 0 | 7149703 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2742 | Capitol Hill | 47.628255 | -122.326199 | Apartment | 1.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 155.0 | 3 | strict | 0 | 0 | 4526943 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2743 | Capitol Hill | 47.622663 | -122.327929 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | moderate | 0 | 0 | 7557951 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2744 | Capitol Hill | 47.616208 | -122.316236 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 175.0 | 1 | flexible | 0 | 0 | 4808173 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2745 | Capitol Hill | 47.614174 | -122.326930 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 1 | 1.0 | 1.0 | "Elevator in Building","Buzzer/Wireless Interc... | 70.0 | 1 | flexible | 0 | 0 | 4404126 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| 2746 | Capitol Hill | 47.616045 | -122.326449 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 84.0 | 1 | flexible | 0 | 0 | 7902137 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2747 | Capitol Hill | 47.624061 | -122.327785 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 175.0 | 2 | flexible | 0 | 0 | 8453633 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2748 | Capitol Hill | 47.614976 | -122.323857 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 167.0 | 2 | strict | 1 | 1 | 2004931 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2749 | Capitol Hill | 47.620751 | -122.316541 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 99.0 | 1 | flexible | 0 | 0 | 7179783 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 |
| 2750 | Capitol Hill | 47.619440 | -122.320592 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet","Air Conditioning",Kitchen... | 100.0 | 1 | flexible | 0 | 0 | 7241235 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2751 | Capitol Hill | 47.623365 | -122.319003 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | Broadway | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 259.0 | 2 | strict | 0 | 0 | 6249458 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2752 | Capitol Hill | 47.624463 | -122.324695 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 139.0 | 3 | strict | 0 | 0 | 1537246 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2753 | Capitol Hill | 47.617010 | -122.320400 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 185.0 | 4 | moderate | 0 | 0 | 841140 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2754 | Capitol Hill | 47.619052 | -122.317694 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 99.0 | 1 | strict | 0 | 0 | 1961950 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2755 | Capitol Hill | 47.620280 | -122.323130 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 90.0 | 1 | flexible | 0 | 0 | 8735996 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2756 | Capitol Hill | 47.615978 | -122.326931 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.5 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 250.0 | 3 | strict | 0 | 0 | 1220471 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2757 | Capitol Hill | 47.615397 | -122.325640 | Condominium | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 85.0 | 1 | flexible | 0 | 0 | 7369 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2758 | Capitol Hill | 47.617731 | -122.326250 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 100.0 | 3 | strict | 0 | 0 | 9137899 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2759 | Capitol Hill | 47.624196 | -122.323850 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV",Kitchen,Heating | 80.0 | 1 | flexible | 0 | 0 | 4831200 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2760 | Capitol Hill | 47.624252 | -122.325818 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 8 | 3.5 | 4.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 260.0 | 1 | flexible | 0 | 0 | 1562643 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2761 | Capitol Hill | 47.625091 | -122.328435 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 1 | flexible | 0 | 0 | 7871807 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2762 | Capitol Hill | 47.622901 | -122.315046 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 119.0 | 1 | flexible | 0 | 0 | 8116395 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2763 | Capitol Hill | 47.625526 | -122.323589 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 182.0 | 3 | strict | 1 | 1 | 872152 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2764 | Capitol Hill | 47.615451 | -122.328741 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 69.0 | 2 | strict | 1 | 0 | 719233 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2765 | Capitol Hill | 47.621082 | -122.326803 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 90.0 | 2 | flexible | 0 | 0 | 6216116 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2766 | Capitol Hill | 47.627014 | -122.316447 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9386509 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2767 | Capitol Hill | 47.626962 | -122.318508 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.5 | 2.0 | TV,"Wireless Internet",Kitchen,"Indoor Firepla... | 130.0 | 1 | moderate | 0 | 0 | 1686958 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2768 | Capitol Hill | 47.617500 | -122.314098 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 135.0 | 1 | moderate | 0 | 0 | 8106277 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2769 | Capitol Hill | 47.623462 | -122.327337 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 82.0 | 14 | flexible | 0 | 0 | 5422881 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2770 | Capitol Hill | 47.623043 | -122.319386 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Buzzer/Wireles... | 212.0 | 2 | flexible | 0 | 0 | 6812054 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2771 | Capitol Hill | 47.623025 | -122.324294 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 47.0 | 2 | strict | 0 | 0 | 5067177 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2772 | Capitol Hill | 47.616020 | -122.314049 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 100.0 | 1 | moderate | 0 | 0 | 6689259 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2773 | Capitol Hill | 47.617865 | -122.322030 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 100.0 | 3 | moderate | 0 | 0 | 4231670 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2774 | Capitol Hill | 47.621613 | -122.320611 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 95.0 | 2 | strict | 0 | 0 | 6951415 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2775 | Capitol Hill | 47.614645 | -122.316834 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 239.0 | 2 | moderate | 0 | 0 | 7666155 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2776 | Capitol Hill | 47.626978 | -122.324298 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 75.0 | 1 | strict | 0 | 0 | 8934054 | 5.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2777 | Capitol Hill | 47.615931 | -122.325297 | Apartment | 1.0 | Futon | a few days or more | 43.0 | 100.0 | 0 | Broadway | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 75.0 | 1 | flexible | 0 | 0 | 7601766 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2778 | Capitol Hill | 47.624242 | -122.320922 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 96.0 | 1 | moderate | 0 | 0 | 6954984 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2779 | Capitol Hill | 47.616260 | -122.325543 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 90.0 | 1 | strict | 0 | 0 | 8339428 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 2780 | Capitol Hill | 47.621478 | -122.319931 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 80.0 | 1 | moderate | 0 | 0 | 5160893 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2781 | Capitol Hill | 47.625009 | -122.325976 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 200.0 | 1 | moderate | 0 | 0 | 7616507 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2782 | Capitol Hill | 47.622366 | -122.315918 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 119.0 | 3 | strict | 0 | 0 | 23192 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2783 | Capitol Hill | 47.625512 | -122.317092 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | flexible | 0 | 0 | 9494415 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2784 | Capitol Hill | 47.623221 | -122.315115 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 85.0 | 2 | moderate | 0 | 0 | 8241019 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2785 | Capitol Hill | 47.625722 | -122.320901 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 69.0 | 4 | strict | 0 | 0 | 4652918 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2786 | Capitol Hill | 47.617448 | -122.322625 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 85.0 | 2 | flexible | 0 | 0 | 7618526 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2787 | Capitol Hill | 47.624794 | -122.321772 | Apartment | 1.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 1 | flexible | 0 | 0 | 5930806 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2788 | Capitol Hill | 47.619730 | -122.316911 | Condominium | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 150.0 | 1 | flexible | 0 | 0 | 9407989 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2789 | Capitol Hill | 47.620604 | -122.322000 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 140.0 | 2 | moderate | 0 | 0 | 6823597 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2790 | Capitol Hill | 47.614918 | -122.324112 | Condominium | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 150.0 | 1 | moderate | 0 | 0 | 5537446 | 8.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2791 | Capitol Hill | 47.620912 | -122.314919 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 100.0 | 2 | moderate | 0 | 0 | 9436832 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2792 | Capitol Hill | 47.619098 | -122.321400 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 10 | 3.0 | 5.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 550.0 | 1 | flexible | 0 | 0 | 9133711 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2793 | Capitol Hill | 47.619528 | -122.328067 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 69.0 | 2 | moderate | 0 | 0 | 10157690 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2794 | Capitol Hill | 47.623304 | -122.325956 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 2 | strict | 0 | 0 | 1122236 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2795 | Capitol Hill | 47.625902 | -122.327329 | House | 3.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Broadway | Entire home/apt | 8 | 1.5 | 4.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 350.0 | 2 | moderate | 0 | 0 | 4906490 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2796 | Capitol Hill | 47.614569 | -122.327236 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 69.0 | 1 | strict | 0 | 0 | 7773668 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2797 | Capitol Hill | 47.624915 | -122.319729 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 48.0 | 2 | flexible | 1 | 1 | 458197 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2798 | Capitol Hill | 47.624762 | -122.320260 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 4 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 2 | moderate | 1 | 1 | 458193 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2799 | Capitol Hill | 47.623410 | -122.319191 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 61.0 | 2 | flexible | 1 | 1 | 458186 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2800 | Capitol Hill | 47.624771 | -122.319143 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 52.0 | 2 | moderate | 1 | 1 | 458183 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2801 | Capitol Hill | 47.630705 | -122.321198 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 95.0 | 2 | moderate | 1 | 0 | 941467 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2802 | Capitol Hill | 47.621999 | -122.322282 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 60.0 | 1 | strict | 0 | 0 | 1039766 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2803 | Capitol Hill | 47.621740 | -122.317839 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 5 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 2 | strict | 0 | 0 | 5078876 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2804 | Capitol Hill | 47.614197 | -122.322789 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 60.0 | 2 | moderate | 0 | 0 | 5242712 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2805 | Capitol Hill | 47.618944 | -122.326573 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Smoking ... | 75.0 | 4 | flexible | 0 | 0 | 1539476 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2806 | Capitol Hill | 47.620733 | -122.317103 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet","Buzzer/Wire... | 100.0 | 2 | moderate | 0 | 0 | 8626068 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 2807 | Capitol Hill | 47.618648 | -122.315312 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 93.0 | 2 | flexible | 0 | 0 | 8150395 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2808 | Capitol Hill | 47.639488 | -122.322783 | Townhouse | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 3 | moderate | 0 | 0 | 4824435 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2809 | Capitol Hill | 47.613876 | -122.329277 | Apartment | 3.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 139.0 | 3 | strict | 1 | 1 | 4250639 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2810 | Capitol Hill | 47.618479 | -122.324522 | Apartment | 1.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 150.0 | 1 | moderate | 0 | 0 | 3652612 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2811 | Capitol Hill | 47.617639 | -122.314672 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 8 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 2 | strict | 0 | 0 | 3570691 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2812 | Capitol Hill | 47.618021 | -122.317100 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 1 | strict | 0 | 0 | 5495802 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2813 | Capitol Hill | 47.625281 | -122.317686 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 8106263 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2814 | Capitol Hill | 47.618560 | -122.323439 | Apartment | 1.0 | Real Bed | within a few hours | 53.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 138.0 | 2 | moderate | 1 | 1 | 1204142 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2815 | Capitol Hill | 47.627673 | -122.321093 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 138.0 | 2 | strict | 0 | 0 | 6769696 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2816 | Capitol Hill | 47.627023 | -122.323464 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 95.0 | 1 | moderate | 0 | 0 | 6118291 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2817 | Capitol Hill | 47.624306 | -122.328266 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 145.0 | 3 | flexible | 0 | 0 | 5593981 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2818 | Capitol Hill | 47.620333 | -122.316204 | Apartment | 3.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Broadway | Shared room | 6 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,E... | 39.0 | 1 | flexible | 0 | 0 | 9970805 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2819 | Capitol Hill | 47.618654 | -122.314209 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 115.0 | 1 | flexible | 0 | 0 | 8673979 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2820 | Capitol Hill | 47.617979 | -122.323158 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 3 | strict | 0 | 0 | 3404914 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2821 | Capitol Hill | 47.617395 | -122.315473 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 175.0 | 1 | flexible | 0 | 0 | 4782745 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2822 | Capitol Hill | 47.633723 | -122.322346 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 55.0 | 1 | moderate | 0 | 0 | 4848255 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 2823 | Capitol Hill | 47.620765 | -122.325788 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.5 | 1.0 | Kitchen | 82.0 | 1 | flexible | 0 | 0 | 2194715 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 2824 | Capitol Hill | 47.618547 | -122.326318 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 10 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 360.0 | 3 | strict | 1 | 1 | 13068 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2825 | Capitol Hill | 47.618682 | -122.321363 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 85.0 | 1 | flexible | 0 | 0 | 9137335 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2826 | Capitol Hill | 47.623598 | -122.317682 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 150.0 | 2 | moderate | 0 | 0 | 6659301 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2827 | Capitol Hill | 47.620703 | -122.318864 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 68.0 | 1 | flexible | 0 | 0 | 5479566 | 7.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2828 | Capitol Hill | 47.615035 | -122.315888 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 6 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 600.0 | 5 | moderate | 0 | 0 | 8273031 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2829 | Capitol Hill | 47.628126 | -122.327240 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 149.0 | 2 | moderate | 0 | 0 | 7363701 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2830 | Capitol Hill | 47.623604 | -122.319437 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 62.0 | 1 | flexible | 0 | 0 | 7984738 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2831 | Capitol Hill | 47.623013 | -122.322742 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 111.0 | 1 | strict | 0 | 0 | 3930681 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2832 | Capitol Hill | 47.617055 | -122.325925 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 120.0 | 2 | flexible | 0 | 0 | 7518794 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2833 | Capitol Hill | 47.615513 | -122.322649 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 96.0 | 1 | flexible | 0 | 0 | 8755762 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2834 | Capitol Hill | 47.620981 | -122.323964 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 150.0 | 3 | flexible | 0 | 0 | 7535055 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2835 | Capitol Hill | 47.630927 | -122.324565 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | moderate | 0 | 0 | 4241862 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2836 | Capitol Hill | 47.615062 | -122.322740 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Kitchen,Gym,"Elevator in Building",Heating,... | 100.0 | 1 | flexible | 0 | 0 | 9509279 | 8.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2837 | Capitol Hill | 47.615877 | -122.314297 | Apartment | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 105.0 | 2 | moderate | 0 | 0 | 6822322 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2838 | Capitol Hill | 47.623046 | -122.320465 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Broadway | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 209.0 | 2 | strict | 0 | 0 | 2628010 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2839 | Capitol Hill | 47.615309 | -122.318382 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Buzzer/Wireles... | 250.0 | 3 | strict | 0 | 0 | 4077920 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2840 | Capitol Hill | 47.625255 | -122.326084 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 82.0 | 2 | flexible | 0 | 0 | 10157880 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2841 | Capitol Hill | 47.620171 | -122.323839 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 110.0 | 3 | moderate | 0 | 0 | 4766173 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2842 | Capitol Hill | 47.622354 | -122.322016 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Kitchen,Heating,Washer,Dryer,"Smoke Detecto... | 125.0 | 1 | moderate | 0 | 0 | 5946151 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2843 | Capitol Hill | 47.623199 | -122.325251 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 109.0 | 2 | strict | 0 | 0 | 2970666 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2844 | Capitol Hill | 47.623593 | -122.316827 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 198.0 | 3 | strict | 0 | 0 | 7308331 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2845 | Capitol Hill | 47.621800 | -122.321245 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | 160.0 | 2 | moderate | 0 | 0 | 3946631 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2846 | Capitol Hill | 47.624981 | -122.316487 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 126.0 | 2 | moderate | 0 | 0 | 7329915 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2847 | Capitol Hill | 47.623585 | -122.326656 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 1 | strict | 0 | 0 | 6436976 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2848 | Capitol Hill | 47.625293 | -122.317576 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 1 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Hea... | 49.0 | 1 | moderate | 0 | 0 | 9328692 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 2849 | Capitol Hill | 47.620403 | -122.319309 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 99.0 | 1 | strict | 0 | 0 | 9117301 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 2850 | Capitol Hill | 47.618689 | -122.322187 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 2 | strict | 0 | 0 | 2898401 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2851 | Capitol Hill | 47.615381 | -122.324129 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 82.0 | 2 | flexible | 0 | 0 | 8193516 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2852 | Capitol Hill | 47.623931 | -122.322586 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 80.0 | 1 | flexible | 0 | 0 | 3766285 | 7.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2853 | Capitol Hill | 47.623839 | -122.321760 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 4 | strict | 0 | 0 | 1520581 | 8.857143 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2854 | Capitol Hill | 47.634174 | -122.322232 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 80.0 | 2 | moderate | 0 | 0 | 1349175 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2855 | Capitol Hill | 47.618129 | -122.314837 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 39.0 | 2 | strict | 0 | 1 | 5633607 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2856 | Capitol Hill | 47.624153 | -122.318227 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 1 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 49.0 | 1 | moderate | 0 | 0 | 9836113 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2857 | Capitol Hill | 47.614458 | -122.314270 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 125.0 | 1 | flexible | 0 | 0 | 5510720 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2858 | Capitol Hill | 47.620264 | -122.322464 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | moderate | 0 | 0 | 6837819 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2859 | Capitol Hill | 47.613909 | -122.329030 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 1 | 1.0 | 1.0 | Kitchen,"Smoking Allowed",Heating,"Smoke Detec... | 90.0 | 1 | flexible | 0 | 0 | 8050232 | 7.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2860 | Capitol Hill | 47.625727 | -122.317308 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Buzze... | 69.0 | 1 | moderate | 0 | 0 | 9386179 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2861 | Capitol Hill | 47.624471 | -122.318499 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 104.0 | 1 | strict | 0 | 0 | 4184211 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2862 | Capitol Hill | 47.623620 | -122.316967 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 180.0 | 5 | moderate | 0 | 0 | 3732949 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2863 | Capitol Hill | 47.625810 | -122.319266 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | strict | 1 | 1 | 1348777 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2864 | Capitol Hill | 47.623362 | -122.316678 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 7 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 240.0 | 3 | strict | 0 | 0 | 317248 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2865 | Capitol Hill | 47.615364 | -122.314831 | Apartment | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,Heating,Washer,Dryer,"Smoke Detector",... | 70.0 | 1 | flexible | 0 | 0 | 6182715 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2866 | Capitol Hill | 47.621758 | -122.325840 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 99.0 | 2 | flexible | 0 | 0 | 8943380 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 |
| 2867 | Capitol Hill | 47.618609 | -122.319697 | Cabin | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 99.0 | 1 | strict | 0 | 0 | 6076158 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2868 | Capitol Hill | 47.625698 | -122.320954 | House | 9.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 16 | 2.0 | 6.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 673.0 | 3 | strict | 1 | 1 | 384797 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2869 | Capitol Hill | 47.618382 | -122.324535 | Apartment | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 98.0 | 2 | flexible | 0 | 0 | 7901318 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2870 | Capitol Hill | 47.625103 | -122.326523 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Pets Allowed",Shampoo | 105.0 | 1 | flexible | 0 | 0 | 7614244 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2871 | Capitol Hill | 47.623982 | -122.320374 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 63.0 | 2 | flexible | 1 | 1 | 458189 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2872 | Capitol Hill | 47.616006 | -122.313078 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 120.0 | 1 | moderate | 0 | 0 | 5386937 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2873 | Capitol Hill | 47.627670 | -122.321448 | Townhouse | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 78.0 | 1 | flexible | 0 | 0 | 8684315 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2874 | Capitol Hill | 47.618077 | -122.318864 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 3 | strict | 0 | 0 | 3412630 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2875 | Capitol Hill | 47.617261 | -122.323945 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 200.0 | 2 | moderate | 0 | 0 | 7054225 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2876 | Capitol Hill | 47.625634 | -122.324663 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.5 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 79.0 | 1 | flexible | 0 | 0 | 1775016 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2877 | Capitol Hill | 47.625300 | -122.316546 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9835920 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2878 | Capitol Hill | 47.616944 | -122.316490 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 195.0 | 3 | strict | 0 | 0 | 4223597 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2879 | Capitol Hill | 47.621803 | -122.325248 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 2 | strict | 0 | 0 | 1976382 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2880 | Capitol Hill | 47.615623 | -122.315215 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 75.0 | 1 | moderate | 0 | 0 | 3396140 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2881 | Capitol Hill | 47.620832 | -122.322806 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Buzzer/Wireless I... | 99.0 | 1 | moderate | 0 | 0 | 1782140 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2882 | Capitol Hill | 47.613989 | -122.327789 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 149.0 | 2 | moderate | 0 | 0 | 430453 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2883 | Capitol Hill | 47.615303 | -122.327702 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 199.0 | 1 | strict | 0 | 0 | 1633986 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2884 | Capitol Hill | 47.624437 | -122.318112 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9507115 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2885 | Capitol Hill | 47.625175 | -122.325161 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 69.0 | 1 | strict | 0 | 0 | 8926060 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2886 | Capitol Hill | 47.624094 | -122.319695 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 4 | strict | 0 | 0 | 1520449 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2887 | Capitol Hill | 47.629384 | -122.321749 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 239.0 | 3 | strict | 0 | 0 | 7697170 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2888 | Capitol Hill | 47.625287 | -122.319425 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 4 | strict | 0 | 0 | 1511620 | 9.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2889 | Capitol Hill | 47.618656 | -122.324838 | Apartment | 1.0 | Futon | within an hour | 93.0 | 100.0 | 0 | Broadway | Shared room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Hot Tub",Heating,... | 29.0 | 1 | moderate | 0 | 0 | 9411935 | 8.571429 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2890 | Capitol Hill | 47.623283 | -122.323777 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 68.0 | 2 | strict | 0 | 0 | 1355094 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2891 | Capitol Hill | 47.625957 | -122.317805 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 134.0 | 2 | strict | 0 | 0 | 6305798 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2892 | Capitol Hill | 47.618223 | -122.323192 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 169.0 | 14 | strict | 1 | 1 | 4009295 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2893 | Capitol Hill | 47.626500 | -122.319851 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 120.0 | 2 | flexible | 0 | 0 | 10334184 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 |
| 2894 | Capitol Hill | 47.614842 | -122.323569 | Apartment | 3.0 | Real Bed | within a day | 93.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 204.0 | 3 | strict | 0 | 0 | 1159111 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2895 | Capitol Hill | 47.635564 | -122.321562 | Apartment | 2.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 295.0 | 2 | strict | 0 | 0 | 9368573 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2896 | Capitol Hill | 47.623618 | -122.322454 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 2.0 | Internet,Kitchen,"Free Parking on Premises","E... | 152.0 | 4 | moderate | 0 | 0 | 3773417 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2897 | Capitol Hill | 47.624623 | -122.316162 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9327585 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2898 | Capitol Hill | 47.625119 | -122.322959 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 6 | 2.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 420.0 | 2 | strict | 0 | 0 | 6492056 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 |
| 2899 | Capitol Hill | 47.627482 | -122.316153 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 81.0 | 2 | moderate | 0 | 0 | 7073650 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2900 | Capitol Hill | 47.614851 | -122.324304 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 25.0 | 1 | flexible | 0 | 0 | 9727857 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2901 | Capitol Hill | 47.622894 | -122.325575 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 3 | strict | 0 | 0 | 446276 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2902 | Capitol Hill | 47.621627 | -122.316929 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 169.0 | 2 | strict | 0 | 0 | 208670 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2903 | Capitol Hill | 47.619206 | -122.323252 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 95.0 | 2 | flexible | 0 | 0 | 8868833 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2904 | Capitol Hill | 47.619699 | -122.314876 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 2.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 100.0 | 5 | strict | 0 | 0 | 7180032 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2905 | Capitol Hill | 47.618199 | -122.321417 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Smoke De... | 85.0 | 1 | flexible | 0 | 0 | 9137259 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 2906 | Capitol Hill | 47.628686 | -122.322336 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 400.0 | 3 | flexible | 0 | 0 | 9252998 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 2907 | Capitol Hill | 47.615227 | -122.324281 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Pets Allowed"... | 120.0 | 1 | flexible | 0 | 0 | 7975026 | 8.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 |
| 2908 | Capitol Hill | 47.615017 | -122.323060 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets All... | 175.0 | 2 | flexible | 0 | 0 | 6278216 | 8.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2909 | Capitol Hill | 47.633907 | -122.321525 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 200.0 | 2 | moderate | 0 | 0 | 6425652 | 8.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 |
| 2910 | Capitol Hill | 47.616908 | -122.313692 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 6 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 250.0 | 1 | strict | 0 | 0 | 7228435 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2911 | Capitol Hill | 47.623970 | -122.317731 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 69.0 | 2 | flexible | 0 | 0 | 9149612 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2912 | Capitol Hill | 47.616520 | -122.314596 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 129.0 | 1 | moderate | 0 | 0 | 8251213 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2913 | Capitol Hill | 47.616826 | -122.323596 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 59.0 | 1 | moderate | 0 | 0 | 5548982 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2914 | Capitol Hill | 47.626166 | -122.317128 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9546633 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2915 | Capitol Hill | 47.618044 | -122.314831 | Apartment | 1.0 | Pull-out Sofa | a few days or more | 40.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 75.0 | 1 | moderate | 0 | 0 | 3272374 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2916 | Capitol Hill | 47.623076 | -122.316603 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Heating,Washer... | 71.0 | 2 | flexible | 0 | 0 | 7335567 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 2917 | Capitol Hill | 47.623989 | -122.315836 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 1 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 49.0 | 1 | moderate | 0 | 0 | 9563458 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2918 | Capitol Hill | 47.615495 | -122.326476 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 2 | strict | 0 | 0 | 7875887 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2919 | Capitol Hill | 47.613270 | -122.329470 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 140.0 | 3 | moderate | 0 | 0 | 3394837 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2920 | Capitol Hill | 47.617641 | -122.327704 | Apartment | 1.0 | Pull-out Sofa | within a day | 100.0 | 0.0 | 0 | Broadway | Shared room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 95.0 | 3 | moderate | 0 | 0 | 4464795 | 9.714286 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2921 | Capitol Hill | 47.620989 | -122.316556 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 100.0 | 2 | moderate | 0 | 0 | 6927016 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2922 | Capitol Hill | 47.615200 | -122.313860 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 150.0 | 3 | flexible | 0 | 0 | 699596 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 2923 | Capitol Hill | 47.622051 | -122.315599 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 89.0 | 1 | strict | 0 | 0 | 6387576 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2924 | Capitol Hill | 47.622947 | -122.319588 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 140.0 | 2 | flexible | 0 | 0 | 8828781 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2925 | Capitol Hill | 47.613301 | -122.329932 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 3 | strict | 0 | 0 | 1198884 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2926 | Capitol Hill | 47.624012 | -122.316210 | Apartment | 1.0 | Real Bed | within an hour | 99.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 69.0 | 1 | moderate | 0 | 0 | 9546508 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 2927 | Capitol Hill | 47.619101 | -122.322711 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 1 | strict | 0 | 0 | 2386589 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2928 | Capitol Hill | 47.618369 | -122.314741 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 2 | flexible | 0 | 0 | 9924107 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2929 | Capitol Hill | 47.627879 | -122.320071 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 152.0 | 2 | strict | 0 | 0 | 3386862 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 2930 | Capitol Hill | 47.619845 | -122.322794 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 1 | flexible | 0 | 0 | 9280767 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2931 | Capitol Hill | 47.625135 | -122.320510 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 4 | strict | 0 | 0 | 1520533 | 8.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2932 | Capitol Hill | 47.615543 | -122.326689 | Apartment | 1.0 | Real Bed | within a day | 65.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,"Buzzer/Wireless Intercom",Heating,"Sm... | 68.0 | 3 | strict | 0 | 0 | 9651755 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 2933 | Capitol Hill | 47.620434 | -122.316884 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 1 | moderate | 0 | 1 | 82763 | 8.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2934 | Capitol Hill | 47.622993 | -122.317091 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 120.0 | 2 | flexible | 0 | 0 | 9880665 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2935 | Capitol Hill | 47.619298 | -122.315846 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer | 120.0 | 3 | moderate | 0 | 0 | 1762354 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2936 | Capitol Hill | 47.623645 | -122.323478 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 110.0 | 1 | moderate | 0 | 0 | 2836237 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2937 | Capitol Hill | 47.615322 | -122.324863 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 160.0 | 1 | flexible | 0 | 0 | 5204475 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2938 | Capitol Hill | 47.623129 | -122.325605 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 105.0 | 2 | moderate | 0 | 0 | 8741711 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2939 | Capitol Hill | 47.618765 | -122.316008 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 82.0 | 2 | flexible | 0 | 0 | 3819831 | 9.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2940 | Capitol Hill | 47.615369 | -122.314837 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 1 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 7 | flexible | 0 | 0 | 8267620 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2941 | Capitol Hill | 47.614367 | -122.314128 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 126.0 | 1 | strict | 0 | 0 | 7087957 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2942 | Capitol Hill | 47.625063 | -122.319053 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Broadway | Shared room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 4 | strict | 0 | 0 | 1520549 | 9.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2943 | Capitol Hill | 47.614956 | -122.324322 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | 99.0 | 20 | flexible | 0 | 0 | 9094872 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 2944 | Capitol Hill | 47.625473 | -122.313026 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 85.0 | 1 | flexible | 0 | 0 | 9414303 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 2945 | Capitol Hill | 47.617426 | -122.326756 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 2 | strict | 0 | 1 | 26116 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2946 | Capitol Hill | 47.621902 | -122.323061 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 250.0 | 1 | flexible | 0 | 0 | 7874053 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2947 | Capitol Hill | 47.619935 | -122.318340 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet","Pets live on this propert... | 159.0 | 1 | strict | 0 | 0 | 6452801 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 2948 | Capitol Hill | 47.625890 | -122.316657 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 125.0 | 7 | flexible | 0 | 0 | 8340841 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2949 | Capitol Hill | 47.623895 | -122.325607 | Apartment | 1.0 | Pull-out Sofa | within an hour | 71.0 | 100.0 | 0 | Broadway | Shared room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,Breakfast... | 45.0 | 1 | flexible | 0 | 0 | 9635943 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 2950 | Capitol Hill | 47.623969 | -122.314462 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 1 | flexible | 0 | 0 | 8046691 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2951 | Capitol Hill | 47.616357 | -122.326333 | Condominium | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 109.0 | 1 | strict | 0 | 0 | 9078843 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2952 | Capitol Hill | 47.620583 | -122.323334 | Apartment | 2.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 110.0 | 1 | moderate | 0 | 0 | 8799909 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 2953 | Capitol Hill | 47.622021 | -122.323985 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 0.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 2 | strict | 0 | 0 | 387079 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2954 | Capitol Hill | 47.629243 | -122.327203 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Smoke ... | 115.0 | 1 | flexible | 0 | 0 | 8292326 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2955 | Capitol Hill | 47.619269 | -122.313172 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Smoking Allowed",... | 60.0 | 1 | flexible | 0 | 0 | 10339144 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2956 | Capitol Hill | 47.619953 | -122.316488 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 100.0 | 1 | moderate | 0 | 0 | 5563136 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2957 | Capitol Hill | 47.617446 | -122.326783 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 150.0 | 10 | flexible | 0 | 0 | 6079216 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2958 | Capitol Hill | 47.618698 | -122.321820 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 115.0 | 1 | flexible | 0 | 0 | 8955477 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2959 | Capitol Hill | 47.622969 | -122.318915 | House | 1.0 | Futon | within an hour | 100.0 | 100.0 | 1 | Broadway | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 139.0 | 1 | strict | 0 | 0 | 6424859 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2960 | Capitol Hill | 47.622116 | -122.328030 | Apartment | 2.0 | Real Bed | within an hour | 83.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Breakfast,"Elevato... | 100.0 | 1 | flexible | 0 | 0 | 7651702 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2961 | Capitol Hill | 47.620265 | -122.324531 | Apartment | 3.0 | Real Bed | within a few hours | 86.0 | 100.0 | 1 | Broadway | Entire home/apt | 8 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 300.0 | 2 | strict | 0 | 0 | 6210952 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2962 | Capitol Hill | 47.619152 | -122.312876 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 98.0 | 2 | moderate | 0 | 0 | 9281758 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2963 | Capitol Hill | 47.619536 | -122.313290 | Apartment | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 5 | 1.0 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 200.0 | 1 | flexible | 0 | 0 | 2875975 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2964 | Capitol Hill | 47.620727 | -122.316574 | Apartment | 2.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 89.0 | 28 | strict | 0 | 0 | 7275027 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2965 | Capitol Hill | 47.624163 | -122.324629 | Apartment | 1.0 | Couch | within a day | 100.0 | 100.0 | 0 | Broadway | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 60.0 | 1 | flexible | 0 | 0 | 4318709 | 9.571429 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2966 | Capitol Hill | 47.618988 | -122.315707 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 144.0 | 1 | moderate | 0 | 0 | 6939106 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2967 | Capitol Hill | 47.622133 | -122.328307 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 110.0 | 2 | moderate | 0 | 0 | 2727938 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 2968 | Capitol Hill | 47.624371 | -122.314494 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadway | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Kitchen,Heating,Washer,Dryer,"Sm... | 90.0 | 1 | strict | 0 | 0 | 7695195 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2969 | Capitol Hill | 47.617633 | -122.314789 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 189.0 | 2 | strict | 0 | 0 | 6445741 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2970 | Capitol Hill | 47.613730 | -122.317176 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Broadway | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Doorman,"... | 99.0 | 3 | strict | 0 | 0 | 7381005 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 2971 | Capitol Hill | 47.623922 | -122.324708 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadway | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Pool,Kitchen,"Pets Allo... | 175.0 | 1 | flexible | 0 | 0 | 8724134 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 2972 | Ballard | 47.676569 | -122.390426 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Loyal Heights | Private room | 3 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 119.0 | 1 | flexible | 0 | 0 | 4023177 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2973 | Ballard | 47.678761 | -122.383089 | House | 1.0 | Pull-out Sofa | within a few hours | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 1 | flexible | 0 | 0 | 1589681 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 2974 | Ballard | 47.683441 | -122.377586 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Buzzer/Wireless ... | 105.0 | 2 | strict | 0 | 0 | 8524349 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 |
| 2975 | Ballard | 47.679788 | -122.387202 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 98.0 | 1 | flexible | 0 | 0 | 9429399 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2976 | Ballard | 47.684386 | -122.387318 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 2 | flexible | 0 | 0 | 7089415 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2977 | Ballard | 47.676345 | -122.390154 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 49.0 | 1 | strict | 0 | 0 | 8033438 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2978 | Ballard | 47.678247 | -122.391455 | House | 1.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 90.0 | 1 | flexible | 0 | 0 | 6836330 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2979 | Ballard | 47.681927 | -122.389966 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 55.0 | 1 | moderate | 1 | 1 | 975179 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2980 | Ballard | 47.682747 | -122.389470 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 85.0 | 1 | moderate | 0 | 0 | 1956094 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 2981 | Ballard | 47.677806 | -122.390070 | House | 1.0 | Real Bed | within a day | 71.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 46.0 | 1 | flexible | 0 | 0 | 9619737 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2982 | Ballard | 47.683293 | -122.387891 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 60.0 | 1 | flexible | 0 | 0 | 9463729 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 2983 | Ballard | 47.678599 | -122.389222 | House | 1.0 | Real Bed | within a day | 71.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 46.0 | 1 | flexible | 0 | 0 | 8866331 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2984 | Ballard | 47.679187 | -122.389399 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Private room | 2 | 1.5 | 1.0 | Kitchen,Heating,Washer,Dryer | 69.0 | 4 | moderate | 0 | 0 | 5457260 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2985 | Ballard | 47.682633 | -122.380032 | House | 1.0 | Futon | within a day | 100.0 | 0.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 75.0 | 1 | flexible | 0 | 0 | 8594406 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2986 | Ballard | 47.675985 | -122.392370 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 95.0 | 4 | moderate | 0 | 0 | 8484705 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2987 | Ballard | 47.685894 | -122.378382 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | moderate | 0 | 0 | 7714585 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2988 | Ballard | 47.682309 | -122.378750 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Loyal Heights | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 1 | moderate | 0 | 1 | 218741 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2989 | Ballard | 47.683308 | -122.378428 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 49.0 | 2 | moderate | 0 | 0 | 8551871 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2990 | Ballard | 47.681349 | -122.388478 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 115.0 | 1 | moderate | 0 | 0 | 8567933 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2991 | Ballard | 47.677827 | -122.390137 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 49.0 | 1 | strict | 0 | 0 | 7934963 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 2992 | Ballard | 47.686687 | -122.391401 | House | 4.0 | Real Bed | within a day | 100.0 | 0.0 | 1 | Loyal Heights | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 220.0 | 5 | strict | 0 | 0 | 6481764 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2993 | Ballard | 47.682822 | -122.377114 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 135.0 | 3 | strict | 0 | 0 | 8426827 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 2994 | Ballard | 47.676132 | -122.387890 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 79.0 | 2 | moderate | 0 | 0 | 7771531 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 2995 | Ballard | 47.688048 | -122.392310 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 99.0 | 3 | strict | 0 | 0 | 37234 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 2996 | Ballard | 47.676540 | -122.380017 | House | 6.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 12 | 3.0 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 435.0 | 2 | strict | 0 | 0 | 2060441 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 2997 | Ballard | 47.681425 | -122.385039 | House | 2.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 14 | strict | 0 | 0 | 2158992 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 2998 | Ballard | 47.677489 | -122.383007 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Indoor Fireplace"... | 130.0 | 1 | flexible | 1 | 1 | 8608414 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 2999 | Ballard | 47.681318 | -122.390759 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 220.0 | 2 | strict | 1 | 1 | 5619397 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3000 | Ballard | 47.677032 | -122.389788 | House | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 95.0 | 3 | strict | 1 | 1 | 4144767 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3001 | Ballard | 47.682113 | -122.378638 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Loyal Heights | Entire home/apt | 7 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 1 | moderate | 0 | 1 | 1301535 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3002 | Ballard | 47.683096 | -122.384887 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 60.0 | 1 | flexible | 0 | 0 | 3882930 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3003 | Ballard | 47.678657 | -122.385963 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 6 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 250.0 | 2 | strict | 0 | 0 | 9186481 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3004 | Ballard | 47.685073 | -122.392619 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Loyal Heights | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 130.0 | 1 | moderate | 0 | 0 | 5364244 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3005 | Ballard | 47.684777 | -122.380234 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 95.0 | 3 | moderate | 0 | 0 | 4127196 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 3006 | Ballard | 47.678901 | -122.381863 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets Allowed","Wa... | 75.0 | 3 | strict | 0 | 0 | 30712 | 8.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3007 | Ballard | 47.681288 | -122.377181 | Camper/RV | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 75.0 | 2 | flexible | 0 | 0 | 5632713 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3008 | Ballard | 47.676396 | -122.389696 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Loyal Heights | Entire home/apt | 8 | 1.0 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 265.0 | 3 | strict | 0 | 0 | 2396734 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3009 | Ballard | 47.681160 | -122.384903 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Loyal Heights | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 105.0 | 1 | flexible | 0 | 0 | 4616634 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3010 | Ballard | 47.678134 | -122.387197 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 14 | strict | 0 | 0 | 1175308 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3011 | Ballard | 47.677364 | -122.390641 | House | 3.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 175.0 | 2 | flexible | 0 | 0 | 3157738 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3012 | Ballard | 47.680359 | -122.385477 | Bungalow | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 65.0 | 1 | flexible | 0 | 0 | 8866927 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3013 | Ballard | 47.680881 | -122.382225 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Loyal Heights | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 99.0 | 2 | strict | 0 | 0 | 3657819 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3014 | Ballard | 47.687180 | -122.377755 | House | 3.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | moderate | 0 | 0 | 8212190 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3015 | Ballard | 47.682894 | -122.383353 | Apartment | 2.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 299.0 | 2 | strict | 0 | 0 | 9030406 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3016 | Ballard | 47.681835 | -122.378903 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 45.0 | 2 | flexible | 0 | 0 | 6884820 | 8.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3017 | Ballard | 47.676536 | -122.392776 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 47.0 | 1 | moderate | 0 | 0 | 6821407 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3018 | Ballard | 47.681090 | -122.377903 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 38.0 | 2 | flexible | 0 | 0 | 9563749 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3019 | Ballard | 47.686170 | -122.377248 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 4 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 1 | moderate | 0 | 0 | 6474341 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3020 | Ballard | 47.679165 | -122.391898 | House | 1.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | 80.0 | 1 | flexible | 0 | 0 | 7038750 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3021 | Ballard | 47.677103 | -122.377392 | Townhouse | 1.0 | Pull-out Sofa | within a few hours | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 69.0 | 1 | moderate | 0 | 0 | 7824929 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3022 | Ballard | 47.677132 | -122.377918 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Loyal Heights | Entire home/apt | 3 | 1.0 | 2.0 | Internet,"Wireless Internet","Air Conditioning... | 89.0 | 2 | strict | 0 | 0 | 2277640 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 3023 | Ballard | 47.676558 | -122.388556 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Loyal Heights | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 70.0 | 1 | strict | 0 | 0 | 5620306 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3024 | Lake City | 47.712329 | -122.301003 | House | 1.0 | Real Bed | a few days or more | 25.0 | 0.0 | 0 | Victory Heights | Private room | 2 | 1.0 | 1.0 | 40.0 | 1 | flexible | 0 | 0 | 9693971 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3025 | Lake City | 47.712468 | -122.307059 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Victory Heights | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 106.0 | 2 | moderate | 0 | 0 | 4739190 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3026 | Lake City | 47.718619 | -122.298369 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Victory Heights | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 100.0 | 1 | flexible | 0 | 0 | 5219336 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3027 | Lake City | 47.701453 | -122.308225 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Victory Heights | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 60.0 | 1 | flexible | 0 | 0 | 2298775 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3028 | Lake City | 47.710899 | -122.311876 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Victory Heights | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 70.0 | 1 | flexible | 0 | 0 | 7455706 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 3029 | Lake City | 47.701221 | -122.308150 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Victory Heights | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 50.0 | 1 | flexible | 0 | 0 | 1142039 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3030 | Lake City | 47.716249 | -122.311811 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Victory Heights | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Elevator in Building",... | 45.0 | 1 | flexible | 0 | 0 | 3563218 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
| 3031 | Lake City | 47.707638 | -122.310745 | Apartment | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Victory Heights | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 119.0 | 2 | moderate | 0 | 0 | 7789264 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3032 | Lake City | 47.713282 | -122.302951 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Victory Heights | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 1 | flexible | 0 | 0 | 6935953 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3033 | Lake City | 47.717053 | -122.302838 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Victory Heights | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 1 | strict | 0 | 0 | 3441402 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3034 | Lake City | 47.704879 | -122.309582 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Victory Heights | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 50.0 | 1 | moderate | 0 | 0 | 921571 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3035 | Lake City | 47.712586 | -122.310704 | House | 1.0 | Airbed | within a day | 100.0 | 100.0 | 0 | Victory Heights | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 60.0 | 1 | flexible | 0 | 0 | 5205984 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3036 | Lake City | 47.716548 | -122.298195 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Victory Heights | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 60.0 | 1 | flexible | 0 | 0 | 5352741 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3037 | Lake City | 47.712305 | -122.311486 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Victory Heights | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 129.0 | 4 | strict | 0 | 0 | 1461971 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3038 | Lake City | 47.701977 | -122.305067 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Victory Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 68.0 | 2 | moderate | 0 | 0 | 6690388 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 3039 | Lake City | 47.694972 | -122.277481 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Matthews Beach | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 60.0 | 1 | flexible | 1 | 1 | 1190571 | 8.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3040 | Lake City | 47.706390 | -122.280746 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Matthews Beach | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 51.0 | 3 | moderate | 1 | 1 | 231097 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3041 | Lake City | 47.705059 | -122.280983 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Matthews Beach | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 149489 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3042 | Lake City | 47.694547 | -122.276586 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Matthews Beach | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 150.0 | 5 | moderate | 0 | 0 | 3703121 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3043 | Lake City | 47.693331 | -122.274309 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 125.0 | 4 | moderate | 0 | 0 | 3004007 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3044 | Lake City | 47.702455 | -122.276419 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 119.0 | 2 | moderate | 0 | 0 | 3870937 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3045 | Lake City | 47.702493 | -122.277430 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Free Parkin... | 87.0 | 2 | moderate | 0 | 0 | 3242247 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 3046 | Lake City | 47.698170 | -122.275309 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 130.0 | 5 | strict | 0 | 0 | 6350606 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3047 | Lake City | 47.699113 | -122.273006 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Matthews Beach | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 80.0 | 6 | flexible | 0 | 0 | 8131762 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3048 | Lake City | 47.700326 | -122.277890 | Apartment | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Matthews Beach | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 65.0 | 1 | flexible | 0 | 0 | 9345786 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3049 | Lake City | 47.695234 | -122.272647 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 8 | 2.5 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 250.0 | 3 | strict | 0 | 0 | 6741526 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3050 | Lake City | 47.716918 | -122.283169 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 8 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 159.0 | 1 | strict | 0 | 0 | 6101613 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3051 | Lake City | 47.694242 | -122.277246 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Matthews Beach | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 60.0 | 1 | flexible | 1 | 1 | 1190224 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3052 | Lake City | 47.704399 | -122.289119 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 91.0 | 1 | flexible | 0 | 0 | 8704931 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3053 | Lake City | 47.713169 | -122.279579 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Matthews Beach | Private room | 1 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning","Wheelc... | 125.0 | 1 | flexible | 0 | 0 | 9591718 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3054 | Lake City | 47.699027 | -122.284527 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 43.0 | 1 | flexible | 0 | 0 | 9432497 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3055 | Lake City | 47.695169 | -122.275210 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Matthews Beach | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 68.0 | 2 | flexible | 0 | 0 | 7931111 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3056 | Lake City | 47.706490 | -122.279164 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Matthews Beach | Private room | 3 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 70.0 | 1 | moderate | 0 | 0 | 5031357 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 3057 | Lake City | 47.701091 | -122.275306 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Matthews Beach | Entire home/apt | 10 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 252.0 | 1 | strict | 0 | 0 | 6603376 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3058 | Ballard | 47.684030 | -122.374086 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 71.0 | 1 | moderate | 0 | 0 | 3861673 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 3059 | Ballard | 47.683941 | -122.373046 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning","Whe... | 99.0 | 3 | flexible | 0 | 0 | 461234 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3060 | Ballard | 47.679591 | -122.370010 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 140.0 | 3 | strict | 0 | 0 | 3510818 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3061 | Ballard | 47.680735 | -122.371838 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 3 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 105.0 | 2 | moderate | 0 | 0 | 6245498 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3062 | Ballard | 47.685149 | -122.376376 | Loft | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 115.0 | 1 | moderate | 0 | 0 | 6557018 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3063 | Ballard | 47.678605 | -122.374046 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 60.0 | 1 | flexible | 0 | 0 | 170469 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 3064 | Ballard | 47.683094 | -122.371384 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 6 | 1.0 | 2.0 | "Wireless Internet","Free Parking on Premises"... | 125.0 | 1 | moderate | 0 | 0 | 7873789 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 3065 | Ballard | 47.688540 | -122.366812 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 1 | moderate | 0 | 0 | 6691873 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3066 | Ballard | 47.683665 | -122.370858 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | strict | 0 | 0 | 7638689 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3067 | Ballard | 47.687023 | -122.373211 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Whittier Heights | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 0 | 0 | 5968862 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3068 | Ballard | 47.686490 | -122.368462 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 3 | strict | 1 | 1 | 260613 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3069 | Ballard | 47.690247 | -122.369629 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 35.0 | 1 | strict | 0 | 0 | 4718820 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3070 | Ballard | 47.679692 | -122.369293 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Whittier Heights | Entire home/apt | 4 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 400.0 | 1 | flexible | 0 | 0 | 6897639 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3071 | Ballard | 47.677209 | -122.369696 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 115.0 | 2 | strict | 0 | 0 | 1023693 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3072 | Ballard | 47.676856 | -122.367117 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 86.0 | 1 | flexible | 0 | 0 | 4438871 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3073 | Ballard | 47.676632 | -122.366792 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 3 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 150.0 | 2 | moderate | 0 | 0 | 4438160 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 3074 | Ballard | 47.687133 | -122.376308 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 225.0 | 1 | moderate | 0 | 0 | 7870538 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3075 | Ballard | 47.688006 | -122.369560 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Wheelchair Accessible","F... | 118.0 | 2 | moderate | 0 | 0 | 6153532 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 |
| 3076 | Ballard | 47.688917 | -122.375864 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 58.0 | 2 | moderate | 0 | 0 | 488268 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3077 | Ballard | 47.677634 | -122.375433 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 7 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 375.0 | 1 | moderate | 0 | 0 | 6375415 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3078 | Ballard | 47.679917 | -122.367107 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Whittier Heights | Entire home/apt | 3 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 89.0 | 3 | moderate | 0 | 0 | 4429898 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3079 | Ballard | 47.683452 | -122.376180 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 80.0 | 2 | flexible | 0 | 0 | 5991139 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3080 | Ballard | 47.677286 | -122.374631 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | TV,Internet,Kitchen,"Pets live on this propert... | 65.0 | 1 | moderate | 0 | 0 | 6130287 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3081 | Ballard | 47.679090 | -122.369675 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 115.0 | 2 | moderate | 0 | 0 | 1623894 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3082 | Ballard | 47.679802 | -122.375070 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Whittier Heights | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Free Parking o... | 69.0 | 2 | moderate | 0 | 0 | 6453383 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 3083 | Ballard | 47.679412 | -122.370540 | House | 2.0 | Real Bed | within a few hours | 94.0 | 100.0 | 1 | Whittier Heights | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 75.0 | 1 | flexible | 0 | 0 | 25002 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 3084 | Lake City | 47.709202 | -122.297901 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Meadowbrook | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 47.0 | 1 | moderate | 0 | 0 | 5183164 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3085 | Lake City | 47.698710 | -122.295758 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Meadowbrook | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Heating,"Smoke Detector... | 50.0 | 1 | flexible | 0 | 0 | 10235136 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 3086 | Lake City | 47.698906 | -122.292220 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Meadowbrook | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 80.0 | 2 | moderate | 0 | 0 | 2352218 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3087 | Lake City | 47.709351 | -122.297975 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Meadowbrook | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 5695344 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3088 | Lake City | 47.711252 | -122.294039 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Meadowbrook | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | flexible | 0 | 0 | 5403847 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3089 | Lake City | 47.709199 | -122.300046 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Meadowbrook | Entire home/apt | 8 | 2.0 | 4.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 250.0 | 2 | strict | 0 | 0 | 1187735 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3090 | Lake City | 47.713480 | -122.293787 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Meadowbrook | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 89.0 | 1 | moderate | 0 | 0 | 8976178 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3091 | Lake City | 47.698547 | -122.293450 | Cabin | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Meadowbrook | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,"Free Parking on Premises",Heating,Was... | 68.0 | 1 | flexible | 0 | 0 | 8717068 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3092 | Lake City | 47.711025 | -122.293326 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Meadowbrook | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 189.0 | 2 | moderate | 0 | 0 | 9717757 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3093 | Other neighborhoods | 47.588696 | -122.380150 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Industrial District | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 130.0 | 1 | flexible | 0 | 0 | 3308825 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3094 | Lake City | 47.722999 | -122.303462 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 35.0 | 1 | strict | 0 | 0 | 8921924 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3095 | Lake City | 47.720493 | -122.300027 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 55.0 | 1 | moderate | 0 | 0 | 2260626 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 3096 | Lake City | 47.732087 | -122.309781 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Olympic Hills | Private room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 65.0 | 1 | flexible | 0 | 0 | 7635496 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3097 | Lake City | 47.728556 | -122.298159 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 42.0 | 1 | moderate | 0 | 0 | 8086294 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3098 | Lake City | 47.723230 | -122.303732 | House | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 55.0 | 1 | strict | 0 | 0 | 1097766 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3099 | Lake City | 47.727846 | -122.303826 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 1 | flexible | 0 | 0 | 4950847 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3100 | Lake City | 47.725210 | -122.301926 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 56.0 | 2 | moderate | 0 | 0 | 670056 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3101 | Lake City | 47.726541 | -122.304249 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Olympic Hills | Private room | 1 | 1.0 | 1.0 | 50.0 | 1 | moderate | 0 | 0 | 7069080 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3102 | Lake City | 47.721563 | -122.307670 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Olympic Hills | Entire home/apt | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises","Pets live ... | 93.0 | 4 | flexible | 0 | 0 | 4701146 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3103 | Lake City | 47.725882 | -122.301063 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 54.0 | 2 | moderate | 0 | 0 | 670021 | 7.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3104 | Lake City | 47.729914 | -122.309630 | House | 3.0 | Real Bed | 0 | 0.0 | 100.0 | 1 | Olympic Hills | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 240.0 | 2 | moderate | 0 | 0 | 6813623 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3105 | Lake City | 47.727765 | -122.298842 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Private room | 3 | 1.5 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 62.0 | 1 | moderate | 0 | 0 | 3208667 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3106 | Lake City | 47.730604 | -122.297165 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 40.0 | 1 | flexible | 0 | 0 | 10332096 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3107 | Lake City | 47.727026 | -122.304274 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Olympic Hills | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 72.0 | 1 | flexible | 0 | 0 | 4951079 | 7.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3108 | Lake City | 47.720438 | -122.308585 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 95.0 | 1 | flexible | 0 | 0 | 9233533 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3109 | Lake City | 47.722022 | -122.303641 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Olympic Hills | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 53.0 | 1 | strict | 0 | 0 | 6782993 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3110 | Other neighborhoods | 47.688459 | -122.310302 | Townhouse | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Roosevelt | Private room | 2 | 2.0 | 1.0 | "Wireless Internet",Kitchen,Gym,"Pets live on ... | 65.0 | 1 | flexible | 0 | 0 | 8340819 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3111 | Other neighborhoods | 47.677368 | -122.314873 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Roosevelt | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 80.0 | 1 | moderate | 0 | 0 | 4024844 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3112 | Other neighborhoods | 47.680390 | -122.318676 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Roosevelt | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 105.0 | 3 | moderate | 0 | 0 | 5397134 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3113 | Other neighborhoods | 47.683081 | -122.315362 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Roosevelt | Private room | 1 | 1.5 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 40.0 | 2 | strict | 0 | 0 | 8061699 | 9.428571 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3114 | Other neighborhoods | 47.687902 | -122.323846 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Roosevelt | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 93.0 | 30 | strict | 0 | 0 | 2934389 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3115 | Other neighborhoods | 47.675759 | -122.319121 | Apartment | 1.0 | Couch | within a few hours | 100.0 | 100.0 | 0 | Roosevelt | Shared room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 76.0 | 1 | flexible | 0 | 0 | 9316009 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3116 | Other neighborhoods | 47.676478 | -122.319707 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Roosevelt | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 1 | flexible | 0 | 0 | 6652199 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3117 | Other neighborhoods | 47.689000 | -122.318274 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Roosevelt | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 105.0 | 2 | flexible | 0 | 0 | 7948034 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3118 | Other neighborhoods | 47.687251 | -122.313130 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Roosevelt | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 82.0 | 2 | moderate | 0 | 0 | 4291 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 3119 | Other neighborhoods | 47.683327 | -122.312227 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 6 | 1.0 | 3.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 209.0 | 2 | moderate | 0 | 0 | 7018009 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3120 | Other neighborhoods | 47.674540 | -122.315692 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Roosevelt | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 109.0 | 1 | moderate | 0 | 0 | 7661577 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3121 | Other neighborhoods | 47.674321 | -122.313146 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 110.0 | 3 | moderate | 0 | 0 | 7418814 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3122 | Other neighborhoods | 47.683364 | -122.311467 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Roosevelt | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet","Free Parking on Premises"... | 1000.0 | 1 | flexible | 0 | 0 | 4825073 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 3123 | Other neighborhoods | 47.688344 | -122.322411 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 0.0 | 0 | Roosevelt | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 60.0 | 14 | flexible | 0 | 0 | 9961388 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 3124 | Other neighborhoods | 47.685114 | -122.318305 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 80.0 | 1 | moderate | 0 | 0 | 8923774 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3125 | Other neighborhoods | 47.688868 | -122.309894 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Roosevelt | Entire home/apt | 4 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 1 | flexible | 0 | 0 | 7405128 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3126 | Other neighborhoods | 47.677329 | -122.317839 | House | 3.0 | Real Bed | within an hour | 80.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 3 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 1 | flexible | 0 | 0 | 8953255 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3127 | Other neighborhoods | 47.672033 | -122.313617 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Roosevelt | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 110.0 | 1 | moderate | 0 | 0 | 9410302 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3128 | Other neighborhoods | 47.688410 | -122.317317 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 6 | 1.0 | 1.0 | Internet,Kitchen,"Free Parking on Premises",He... | 86.0 | 2 | moderate | 0 | 0 | 8559462 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3129 | Other neighborhoods | 47.674529 | -122.314520 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 165.0 | 1 | strict | 0 | 0 | 9901852 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3130 | Other neighborhoods | 47.678573 | -122.313379 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 149.0 | 2 | strict | 0 | 0 | 1145941 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3131 | Other neighborhoods | 47.684309 | -122.313107 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 84.0 | 2 | moderate | 0 | 0 | 7802149 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3132 | Other neighborhoods | 47.677347 | -122.314958 | House | 2.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 3 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 139.0 | 2 | moderate | 0 | 0 | 3561108 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3133 | Other neighborhoods | 47.685272 | -122.317551 | Townhouse | 1.0 | Airbed | within an hour | 100.0 | 100.0 | 1 | Roosevelt | Shared room | 1 | 1.5 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 33.0 | 2 | strict | 0 | 0 | 5310503 | 10.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3134 | Other neighborhoods | 47.674895 | -122.313800 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Roosevelt | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 129.0 | 2 | moderate | 0 | 0 | 4820795 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3135 | Other neighborhoods | 47.681596 | -122.318403 | House | 2.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Roosevelt | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 59.0 | 1 | flexible | 0 | 0 | 4664312 | 9.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3136 | Other neighborhoods | 47.686271 | -122.309646 | Bed & Breakfast | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Roosevelt | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 90.0 | 2 | flexible | 0 | 0 | 2804399 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3137 | Other neighborhoods | 47.672456 | -122.315751 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Pets l... | 150.0 | 1 | moderate | 0 | 0 | 9733835 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3138 | Other neighborhoods | 47.676583 | -122.318674 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Roosevelt | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 94.0 | 2 | moderate | 0 | 0 | 9888395 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3139 | Other neighborhoods | 47.677866 | -122.320452 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Roosevelt | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 39.0 | 2 | moderate | 0 | 0 | 7201336 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3140 | Queen Anne | 47.624900 | -122.352101 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 125.0 | 2 | strict | 0 | 0 | 4180905 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
| 3141 | Queen Anne | 47.631559 | -122.362067 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 65.0 | 1 | strict | 0 | 0 | 6603061 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3142 | Queen Anne | 47.626542 | -122.344369 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 110.0 | 2 | strict | 0 | 0 | 8606766 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3143 | Queen Anne | 47.619505 | -122.352750 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 75.0 | 2 | moderate | 0 | 0 | 5163047 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3144 | Queen Anne | 47.627468 | -122.356931 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 100.0 | 1 | moderate | 0 | 0 | 8578023 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3145 | Queen Anne | 47.621275 | -122.355373 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 10 | strict | 0 | 0 | 9939038 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3146 | Queen Anne | 47.622793 | -122.358864 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 103.0 | 1 | flexible | 0 | 0 | 9061048 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 3147 | Queen Anne | 47.622487 | -122.361918 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 105.0 | 1 | moderate | 0 | 0 | 7603457 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3148 | Queen Anne | 47.624340 | -122.353641 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | flexible | 0 | 0 | 5639238 | 6.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3149 | Queen Anne | 47.622503 | -122.355835 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 2 | moderate | 0 | 0 | 5362889 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3150 | Queen Anne | 47.626167 | -122.358911 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 120.0 | 1 | moderate | 0 | 0 | 7203408 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3151 | Queen Anne | 47.627580 | -122.356562 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 275.0 | 1 | flexible | 0 | 0 | 7885859 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3152 | Queen Anne | 47.626470 | -122.353986 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 1 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 65.0 | 1 | flexible | 0 | 0 | 10141859 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 3153 | Queen Anne | 47.622037 | -122.356521 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | Kitchen,"Free Parking on Premises","Elevator i... | 100.0 | 1 | flexible | 0 | 0 | 7762347 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3154 | Queen Anne | 47.620818 | -122.356335 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 95.0 | 2 | moderate | 0 | 0 | 544433 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3155 | Queen Anne | 47.623092 | -122.354776 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 1 | flexible | 0 | 0 | 9410128 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3156 | Queen Anne | 47.619893 | -122.354142 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 135.0 | 1 | strict | 0 | 0 | 6276224 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3157 | Queen Anne | 47.623858 | -122.361879 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | moderate | 0 | 0 | 5252515 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3158 | Queen Anne | 47.628238 | -122.359829 | Camper/RV | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 145.0 | 2 | moderate | 0 | 1 | 1622794 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3159 | Queen Anne | 47.624593 | -122.359451 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 145.0 | 1 | flexible | 0 | 0 | 9171373 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3160 | Queen Anne | 47.620657 | -122.359650 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 96.0 | 2 | flexible | 0 | 0 | 8423118 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3161 | Queen Anne | 47.629268 | -122.359128 | Townhouse | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 5 | 2.5 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 498.0 | 2 | strict | 0 | 0 | 6248083 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 |
| 3162 | Queen Anne | 47.627268 | -122.345363 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 110.0 | 2 | moderate | 0 | 0 | 7932696 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3163 | Queen Anne | 47.627571 | -122.353691 | Apartment | 1.0 | Real Bed | within a day | 86.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 119.0 | 1 | flexible | 0 | 0 | 3215404 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3164 | Queen Anne | 47.627668 | -122.349617 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 119.0 | 1 | flexible | 0 | 0 | 9522082 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3165 | Queen Anne | 47.621055 | -122.357378 | Apartment | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 217.0 | 2 | moderate | 0 | 0 | 3040278 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3166 | Queen Anne | 47.621377 | -122.355623 | Condominium | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 99.0 | 14 | strict | 0 | 0 | 9939740 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3167 | Queen Anne | 47.621281 | -122.356752 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 95.0 | 2 | moderate | 0 | 0 | 1071843 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3168 | Queen Anne | 47.627151 | -122.357463 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 165.0 | 2 | moderate | 0 | 0 | 4973204 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3169 | Queen Anne | 47.624649 | -122.364530 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 85.0 | 2 | moderate | 0 | 0 | 6584984 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3170 | Queen Anne | 47.631310 | -122.357741 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Gym,... | 200.0 | 1 | moderate | 0 | 0 | 9118240 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3171 | Queen Anne | 47.626233 | -122.357295 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Wheelchair Accessible"... | 120.0 | 2 | strict | 0 | 0 | 6971260 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 3172 | Queen Anne | 47.627110 | -122.346219 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 240.0 | 1 | flexible | 0 | 0 | 3738724 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3173 | Queen Anne | 47.626155 | -122.349991 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 5 | 2.0 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 275.0 | 5 | strict | 0 | 1 | 945833 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3174 | Queen Anne | 47.619042 | -122.352016 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 103.0 | 1 | strict | 0 | 0 | 5261239 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3175 | Queen Anne | 47.622145 | -122.359825 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 165.0 | 3 | strict | 0 | 0 | 4596493 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3176 | Queen Anne | 47.622251 | -122.357502 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 120.0 | 2 | flexible | 0 | 0 | 4310055 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3177 | Queen Anne | 47.623517 | -122.357297 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 0 | 0 | 3720429 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3178 | Queen Anne | 47.631101 | -122.356687 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 1 | flexible | 0 | 0 | 6956301 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3179 | Queen Anne | 47.619887 | -122.353289 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 200.0 | 2 | moderate | 0 | 0 | 6750430 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3180 | Queen Anne | 47.627768 | -122.348106 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 115.0 | 2 | flexible | 0 | 0 | 8373664 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3181 | Queen Anne | 47.621443 | -122.361627 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 3 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 125.0 | 1 | strict | 1 | 1 | 6783394 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3182 | Queen Anne | 47.624836 | -122.353880 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 75.0 | 2 | flexible | 0 | 0 | 9332620 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3183 | Queen Anne | 47.626526 | -122.352883 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"E... | 115.0 | 2 | flexible | 0 | 0 | 6727846 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3184 | Queen Anne | 47.620610 | -122.356266 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 95.0 | 2 | moderate | 0 | 0 | 1321090 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3185 | Queen Anne | 47.623628 | -122.362003 | Apartment | 5.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 259.0 | 1 | strict | 0 | 0 | 10170744 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3186 | Queen Anne | 47.621477 | -122.356253 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 80.0 | 1 | flexible | 0 | 0 | 8503720 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3187 | Queen Anne | 47.627031 | -122.362729 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 130.0 | 1 | flexible | 0 | 0 | 6780670 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3188 | Queen Anne | 47.627858 | -122.348104 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 89.0 | 2 | strict | 0 | 0 | 9370738 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3189 | Queen Anne | 47.621125 | -122.356929 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 130.0 | 3 | strict | 0 | 0 | 1060467 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3190 | Queen Anne | 47.631003 | -122.357950 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.5 | 2.0 | Kitchen,"Free Parking on Premises","Pets Allow... | 150.0 | 3 | flexible | 0 | 0 | 9516743 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3191 | Queen Anne | 47.627210 | -122.345157 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 72.0 | 1 | moderate | 0 | 0 | 6240501 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3192 | Queen Anne | 47.625787 | -122.350890 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 6 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Air Conditioning",Kitc... | 275.0 | 2 | strict | 0 | 0 | 8150145 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3193 | Queen Anne | 47.627927 | -122.345116 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 80.0 | 1 | flexible | 0 | 0 | 8967776 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3194 | Queen Anne | 47.626010 | -122.347819 | Apartment | 2.0 | Real Bed | within an hour | 83.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 5 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 175.0 | 2 | flexible | 0 | 0 | 10000273 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3195 | Queen Anne | 47.626102 | -122.366997 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Gym,"Elevator i... | 75.0 | 1 | strict | 0 | 0 | 9679301 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3196 | Queen Anne | 47.626830 | -122.357398 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 2 | flexible | 0 | 0 | 8690491 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3197 | Queen Anne | 47.626076 | -122.344504 | Townhouse | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 6 | 3.5 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 310.0 | 3 | strict | 0 | 0 | 7678064 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3198 | Queen Anne | 47.625047 | -122.352231 | Apartment | 1.0 | Couch | within a day | 100.0 | 100.0 | 1 | Lower Queen Anne | Shared room | 1 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Elevator in Bu... | 38.0 | 2 | flexible | 0 | 0 | 7798575 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 3199 | Queen Anne | 47.624950 | -122.363449 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 189.0 | 5 | moderate | 0 | 0 | 4988679 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3200 | Queen Anne | 47.619698 | -122.358120 | Apartment | 1.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 205.0 | 1 | moderate | 0 | 0 | 6093756 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3201 | Queen Anne | 47.630669 | -122.357292 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 199.0 | 2 | moderate | 0 | 0 | 7921289 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3202 | Queen Anne | 47.625580 | -122.347288 | Condominium | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 1 | flexible | 0 | 0 | 10108451 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3203 | Queen Anne | 47.619030 | -122.354374 | Condominium | 1.0 | Real Bed | within a day | 89.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 67.0 | 1 | flexible | 0 | 0 | 8117705 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3204 | Queen Anne | 47.631327 | -122.361637 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 72.0 | 1 | flexible | 0 | 0 | 4324917 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3205 | Queen Anne | 47.618762 | -122.353414 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet","Air Condition... | 175.0 | 2 | flexible | 0 | 0 | 5061566 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3206 | Queen Anne | 47.627701 | -122.344901 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 119.0 | 2 | strict | 0 | 0 | 8575663 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3207 | Queen Anne | 47.625859 | -122.357669 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 97.0 | 1 | flexible | 0 | 0 | 8518308 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3208 | Queen Anne | 47.626321 | -122.357367 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 200.0 | 1 | strict | 0 | 0 | 3562617 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3209 | Queen Anne | 47.626859 | -122.359653 | House | 2.0 | Real Bed | within a few hours | 67.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 190.0 | 1 | strict | 0 | 0 | 7109735 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3210 | Queen Anne | 47.626801 | -122.362293 | House | 1.0 | Real Bed | within a few hours | 75.0 | 0.0 | 0 | Lower Queen Anne | Private room | 1 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 3 | flexible | 0 | 0 | 8501721 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3211 | Queen Anne | 47.620234 | -122.354343 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 99.0 | 2 | flexible | 0 | 0 | 5306727 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3212 | Queen Anne | 47.627823 | -122.353415 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet","Wheel... | 99.0 | 3 | moderate | 0 | 0 | 909102 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3213 | Queen Anne | 47.627376 | -122.344253 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 119.0 | 2 | flexible | 0 | 0 | 8608525 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3214 | Queen Anne | 47.627674 | -122.358611 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 225.0 | 2 | strict | 0 | 1 | 170273 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3215 | Queen Anne | 47.620729 | -122.356453 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 100.0 | 2 | flexible | 0 | 0 | 7075913 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3216 | Queen Anne | 47.626405 | -122.358380 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 2 | moderate | 0 | 1 | 481220 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3217 | Queen Anne | 47.624062 | -122.362075 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 85.0 | 1 | flexible | 0 | 0 | 6961346 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3218 | Queen Anne | 47.627816 | -122.347440 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 3 | flexible | 0 | 0 | 9975073 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3219 | Queen Anne | 47.619741 | -122.353689 | Loft | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 190.0 | 3 | strict | 0 | 0 | 6517594 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3220 | Queen Anne | 47.622442 | -122.361084 | Apartment | 3.0 | Real Bed | within a day | 96.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 1 | strict | 0 | 0 | 10170577 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3221 | Queen Anne | 47.625639 | -122.359866 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Wheelchair Acces... | 119.0 | 1 | flexible | 0 | 0 | 7680670 | 9.571429 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3222 | Queen Anne | 47.625177 | -122.362021 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 145.0 | 2 | moderate | 0 | 0 | 5946675 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3223 | Queen Anne | 47.627494 | -122.350431 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 220.0 | 2 | strict | 0 | 0 | 7162664 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3224 | Queen Anne | 47.626585 | -122.358380 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Lower Queen Anne | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Smoke Detector... | 99.0 | 2 | flexible | 0 | 0 | 6901218 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3225 | Queen Anne | 47.623529 | -122.355230 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 125.0 | 2 | flexible | 0 | 0 | 4951430 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3226 | Queen Anne | 47.626210 | -122.360147 | Apartment | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 75.0 | 2 | flexible | 0 | 0 | 7202016 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3227 | Queen Anne | 47.627621 | -122.356593 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 145.0 | 1 | strict | 0 | 0 | 5538663 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3228 | Queen Anne | 47.621072 | -122.353124 | Apartment | 2.0 | Futon | within a few hours | 90.0 | 100.0 | 1 | Lower Queen Anne | Entire home/apt | 3 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 90.0 | 1 | strict | 0 | 0 | 363064 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3229 | Queen Anne | 47.626807 | -122.348114 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 76.0 | 2 | flexible | 0 | 0 | 7809595 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3230 | Queen Anne | 47.621821 | -122.356236 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | moderate | 0 | 0 | 9094836 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3231 | Queen Anne | 47.620417 | -122.357919 | Apartment | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Lower Queen Anne | Private room | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises","Pets Allow... | 93.0 | 1 | moderate | 0 | 0 | 3039438 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3232 | Queen Anne | 47.619640 | -122.357584 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Wheelchair Acces... | 89.0 | 1 | strict | 0 | 0 | 8847979 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3233 | Queen Anne | 47.624016 | -122.353982 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Lower Queen Anne | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 160.0 | 2 | moderate | 0 | 0 | 4047399 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3234 | Other neighborhoods | 47.692815 | -122.285336 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wedgwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 65.0 | 3 | moderate | 0 | 0 | 66611 | 8.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3235 | Other neighborhoods | 47.683748 | -122.287303 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wedgwood | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,"... | 65.0 | 1 | moderate | 0 | 0 | 7279669 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3236 | Other neighborhoods | 47.684580 | -122.286694 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wedgwood | Private room | 1 | 1.0 | 1.0 | TV,Dryer,"Smoke Detector","Carbon Monoxide Det... | 75.0 | 1 | flexible | 0 | 0 | 9716348 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
| 3237 | Other neighborhoods | 47.684422 | -122.298464 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wedgwood | Private room | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 80.0 | 2 | flexible | 0 | 0 | 9887142 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 3238 | Other neighborhoods | 47.693653 | -122.303160 | House | 2.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Wedgwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 100.0 | 1 | strict | 0 | 0 | 7007118 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 |
| 3239 | Other neighborhoods | 47.696577 | -122.304554 | Townhouse | 3.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Wedgwood | Entire home/apt | 5 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 98.0 | 2 | moderate | 0 | 0 | 5325809 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3240 | Other neighborhoods | 47.692200 | -122.292314 | House | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wedgwood | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 299.0 | 3 | strict | 0 | 0 | 6342327 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3241 | Other neighborhoods | 47.683623 | -122.288278 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wedgwood | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 250.0 | 1 | strict | 0 | 0 | 555182 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3242 | Other neighborhoods | 47.696701 | -122.295768 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Wedgwood | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 175.0 | 1 | flexible | 0 | 0 | 6729818 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3243 | Other neighborhoods | 47.694208 | -122.286249 | House | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 0 | Wedgwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 65.0 | 3 | moderate | 0 | 0 | 66540 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3244 | Other neighborhoods | 47.690487 | -122.296773 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wedgwood | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 75.0 | 1 | flexible | 0 | 0 | 8098383 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 3245 | Other neighborhoods | 47.695449 | -122.282562 | Loft | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Wedgwood | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Air Conditioning... | 100.0 | 7 | strict | 0 | 0 | 5930473 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3246 | Other neighborhoods | 47.692465 | -122.286884 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wedgwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 60.0 | 3 | moderate | 0 | 0 | 47491 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3247 | Other neighborhoods | 47.685232 | -122.289435 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wedgwood | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Pets Allowed",Hea... | 48.0 | 1 | strict | 0 | 0 | 447523 | 9.142857 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3248 | Other neighborhoods | 47.685713 | -122.289958 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Wedgwood | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 48.0 | 1 | moderate | 0 | 0 | 3961077 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3249 | Other neighborhoods | 47.692701 | -122.285479 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Wedgwood | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 60.0 | 3 | moderate | 0 | 0 | 52525 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3250 | Other neighborhoods | 47.692848 | -122.304656 | Apartment | 2.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Wedgwood | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV","Wireless Internet","Wheelchair ... | 125.0 | 3 | strict | 0 | 0 | 6811792 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3251 | Other neighborhoods | 47.684710 | -122.300115 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Wedgwood | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 1 | flexible | 0 | 0 | 7619727 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3252 | Other neighborhoods | 47.698181 | -122.387101 | House | 3.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 210.0 | 1 | moderate | 0 | 0 | 270370 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3253 | Other neighborhoods | 47.700134 | -122.392279 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Private room | 2 | 1.0 | 1.0 | 85.0 | 1 | moderate | 0 | 0 | 7221204 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3254 | Other neighborhoods | 47.698335 | -122.386716 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 1 | flexible | 0 | 0 | 6495424 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3255 | Other neighborhoods | 47.698191 | -122.396615 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Free Parking on ... | 75.0 | 2 | strict | 0 | 0 | 2737038 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3256 | Other neighborhoods | 47.694122 | -122.394657 | Other | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 80.0 | 2 | strict | 0 | 0 | 9034515 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3257 | Other neighborhoods | 47.698337 | -122.392710 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 180.0 | 2 | strict | 0 | 0 | 8147215 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3258 | Other neighborhoods | 47.704322 | -122.381792 | House | 3.0 | Real Bed | within a day | 80.0 | 100.0 | 1 | North Beach/Blue Ridge | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 240.0 | 3 | strict | 0 | 0 | 6376952 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3259 | Other neighborhoods | 47.707154 | -122.374164 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 49.0 | 1 | moderate | 0 | 0 | 10319529 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3260 | Other neighborhoods | 47.698106 | -122.384641 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 275.0 | 2 | strict | 0 | 0 | 3613516 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3261 | Other neighborhoods | 47.696878 | -122.400469 | Bungalow | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 95.0 | 3 | flexible | 0 | 0 | 8780704 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3262 | Other neighborhoods | 47.708632 | -122.375248 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 108.0 | 2 | moderate | 0 | 0 | 9714078 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3263 | Other neighborhoods | 47.692086 | -122.383495 | Boat | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beach/Blue Ridge | Private room | 2 | 0.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 1 | flexible | 0 | 0 | 1593991 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3264 | Other neighborhoods | 47.696026 | -122.393591 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 75.0 | 2 | flexible | 0 | 0 | 6239108 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3265 | Other neighborhoods | 47.703289 | -122.375627 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North Beach/Blue Ridge | Entire home/apt | 8 | 1.0 | 3.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 99.0 | 2 | flexible | 0 | 0 | 2303981 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3266 | Lake City | 47.721247 | -122.287731 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Cedar Park | Entire home/apt | 5 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 3 | strict | 0 | 0 | 5104077 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3267 | Lake City | 47.723647 | -122.288216 | Bed & Breakfast | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Cedar Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 92.0 | 1 | moderate | 0 | 0 | 7434103 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3268 | Lake City | 47.721432 | -122.281812 | Apartment | 2.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Cedar Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 171.0 | 2 | strict | 0 | 0 | 8233110 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3269 | Lake City | 47.718063 | -122.283457 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Cedar Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 55.0 | 1 | flexible | 0 | 0 | 6438099 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3270 | Lake City | 47.717742 | -122.293943 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Cedar Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 70.0 | 14 | strict | 0 | 0 | 7650458 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3271 | Lake City | 47.723178 | -122.282889 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Cedar Park | Private room | 1 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 80.0 | 1 | flexible | 0 | 0 | 7219541 | 8.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
| 3272 | Lake City | 47.717039 | -122.289066 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Cedar Park | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 250.0 | 2 | moderate | 0 | 0 | 4092037 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3273 | Lake City | 47.717962 | -122.291141 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Cedar Park | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Free Parking o... | 89.0 | 2 | moderate | 0 | 0 | 475361 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
| 3274 | Other neighborhoods | 47.705649 | -122.352178 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Bitter Lake | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 90.0 | 3 | moderate | 0 | 0 | 6327662 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3275 | Other neighborhoods | 47.730653 | -122.351543 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bitter Lake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 50.0 | 1 | flexible | 0 | 0 | 9679741 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3276 | Other neighborhoods | 47.714688 | -122.354680 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Bitter Lake | Private room | 4 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 170.0 | 1 | flexible | 0 | 0 | 2630912 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3277 | Other neighborhoods | 47.710583 | -122.355073 | House | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Bitter Lake | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 45.0 | 1 | flexible | 0 | 0 | 6629657 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3278 | Other neighborhoods | 47.709069 | -122.345966 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Bitter Lake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 39.0 | 1 | moderate | 0 | 0 | 1340668 | 8.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3279 | Other neighborhoods | 47.705062 | -122.346484 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Bitter Lake | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,Kitchen,"Free Parking on Premises"... | 78.0 | 2 | strict | 0 | 0 | 8474584 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3280 | Other neighborhoods | 47.711542 | -122.352472 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Bitter Lake | Private room | 1 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 1 | flexible | 0 | 0 | 9460991 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3281 | Other neighborhoods | 47.723457 | -122.350007 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Bitter Lake | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 60.0 | 1 | strict | 0 | 0 | 7066118 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3282 | Other neighborhoods | 47.711590 | -122.354906 | House | 1.0 | Real Bed | within a day | 70.0 | 100.0 | 0 | Bitter Lake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 65.0 | 1 | flexible | 0 | 0 | 4681885 | 9.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3283 | Other neighborhoods | 47.706399 | -122.352836 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Bitter Lake | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 1 | moderate | 0 | 0 | 9154462 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3284 | Other neighborhoods | 47.724782 | -122.353067 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Bitter Lake | Private room | 4 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,"... | 64.0 | 1 | strict | 0 | 0 | 3689416 | 8.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3285 | Other neighborhoods | 47.715033 | -122.355344 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Bitter Lake | Entire home/apt | 8 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 190.0 | 4 | strict | 0 | 0 | 3263722 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3286 | Other neighborhoods | 47.733358 | -122.354277 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Bitter Lake | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 39.0 | 2 | moderate | 0 | 0 | 5309974 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 |
| 3287 | Ballard | 47.686197 | -122.399521 | Bed & Breakfast | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Breakfast,Heating,"Family/... | 77.0 | 1 | strict | 0 | 0 | 1793138 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 3288 | Ballard | 47.683532 | -122.400902 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | 80.0 | 1 | flexible | 0 | 0 | 8371720 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3289 | Ballard | 47.669226 | -122.400103 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 75.0 | 1 | flexible | 0 | 0 | 8310249 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3290 | Ballard | 47.667883 | -122.399969 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 75.0 | 1 | flexible | 0 | 0 | 8310398 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3291 | Ballard | 47.669921 | -122.401464 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Sunset Hill | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 55.0 | 2 | moderate | 1 | 1 | 158345 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3292 | Ballard | 47.672345 | -122.398920 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning","Pets A... | 70.0 | 2 | moderate | 0 | 0 | 173896 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 3293 | Ballard | 47.668133 | -122.400749 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | flexible | 0 | 0 | 6759038 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3294 | Ballard | 47.679337 | -122.395808 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 85.0 | 2 | moderate | 0 | 0 | 9138923 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3295 | Ballard | 47.680689 | -122.401459 | House | 3.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 2 | strict | 0 | 0 | 6018416 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3296 | Ballard | 47.686957 | -122.400318 | Bed & Breakfast | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Sunset Hill | Private room | 3 | 1.0 | 1.0 | "Wireless Internet",Breakfast,Heating,"Family/... | 92.0 | 1 | strict | 0 | 0 | 1777158 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 3297 | Ballard | 47.669173 | -122.400583 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 5 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 3 | moderate | 0 | 0 | 5364414 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3298 | Ballard | 47.690871 | -122.399353 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Sunset Hill | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 50.0 | 1 | flexible | 0 | 0 | 1856253 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3299 | Ballard | 47.689522 | -122.395965 | House | 3.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 5 | 2.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 150.0 | 4 | moderate | 0 | 0 | 6994406 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3300 | Ballard | 47.676984 | -122.401496 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 475.0 | 4 | strict | 0 | 0 | 1488166 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3301 | Ballard | 47.668995 | -122.402801 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 5 | 3.0 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 375.0 | 2 | strict | 0 | 0 | 463768 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3302 | Ballard | 47.671335 | -122.402303 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Sunset Hill | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 2 | strict | 0 | 0 | 4334804 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3303 | Ballard | 47.679581 | -122.404012 | Boat | 1.0 | Couch | within a day | 50.0 | 100.0 | 0 | Sunset Hill | Private room | 1 | 0.5 | 1.0 | TV,"Cable TV",Internet,Kitchen,"First Aid Kit"... | 75.0 | 1 | flexible | 0 | 0 | 9331145 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3304 | Ballard | 47.669938 | -122.403059 | House | 2.0 | Real Bed | a few days or more | 33.0 | 100.0 | 0 | Sunset Hill | Entire home/apt | 4 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 350.0 | 2 | moderate | 0 | 0 | 7389248 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3305 | Northgate | 47.706086 | -122.341683 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Haller Lake | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 75.0 | 3 | moderate | 0 | 0 | 1022135 | 9.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3306 | Northgate | 47.732647 | -122.341301 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Haller Lake | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 119.0 | 2 | moderate | 0 | 0 | 1219691 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3307 | Northgate | 47.708393 | -122.337037 | Townhouse | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Haller Lake | Entire home/apt | 6 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 97.0 | 1 | moderate | 0 | 0 | 7969698 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3308 | Northgate | 47.708265 | -122.338299 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Haller Lake | Entire home/apt | 4 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 2 | flexible | 0 | 0 | 7403174 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3309 | Northgate | 47.707579 | -122.336808 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Haller Lake | Entire home/apt | 8 | 2.0 | 3.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 200.0 | 1 | strict | 0 | 0 | 7368599 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3310 | Northgate | 47.726702 | -122.324789 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Haller Lake | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 108.0 | 3 | strict | 0 | 0 | 1692318 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3311 | Northgate | 47.715012 | -122.331975 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Haller Lake | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 49.0 | 20 | moderate | 0 | 0 | 5950957 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3312 | Northgate | 47.727420 | -122.327639 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Haller Lake | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 1 | 315120 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3313 | Northgate | 47.718237 | -122.336706 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Haller Lake | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 70.0 | 1 | flexible | 0 | 0 | 3925572 | 8.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 3314 | Northgate | 47.719145 | -122.327907 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Haller Lake | Private room | 4 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 70.0 | 1 | moderate | 0 | 0 | 5308339 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 3315 | Northgate | 47.709015 | -122.337063 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Haller Lake | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 98.0 | 1 | flexible | 0 | 0 | 8426749 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3316 | Northgate | 47.714885 | -122.332964 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Haller Lake | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 2 | flexible | 1 | 1 | 107962 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3317 | Northgate | 47.706758 | -122.336615 | Townhouse | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Haller Lake | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 36.0 | 1 | flexible | 0 | 0 | 9220485 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3318 | Northgate | 47.706899 | -122.337428 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Haller Lake | Private room | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 80.0 | 1 | flexible | 0 | 0 | 8446541 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 |
| 3319 | Northgate | 47.723956 | -122.325776 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Haller Lake | Entire home/apt | 8 | 2.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 199.0 | 3 | moderate | 0 | 0 | 9675736 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3320 | Northgate | 47.712988 | -122.316581 | Apartment | 2.0 | Real Bed | within an hour | 89.0 | 100.0 | 0 | Pinehurst | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet","Wheelchair Acces... | 139.0 | 2 | strict | 0 | 0 | 7534812 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3321 | Northgate | 47.711108 | -122.316696 | Apartment | 1.0 | Real Bed | within an hour | 89.0 | 100.0 | 0 | Pinehurst | Entire home/apt | 8 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 150.0 | 2 | strict | 0 | 0 | 7839723 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3322 | Northgate | 47.729327 | -122.315261 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Pinehurst | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,"... | 55.0 | 1 | moderate | 0 | 0 | 3209964 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3323 | Northgate | 47.712450 | -122.326418 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Pinehurst | Entire home/apt | 6 | 1.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 2 | moderate | 0 | 0 | 5607404 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3324 | Northgate | 47.693029 | -122.340522 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | North College Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | flexible | 0 | 0 | 6103108 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3325 | Northgate | 47.691516 | -122.339498 | House | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | North College Park | Private room | 2 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 73.0 | 1 | flexible | 0 | 0 | 9938792 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3326 | Northgate | 47.697103 | -122.344556 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 0.0 | 1 | North College Park | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 95.0 | 2 | strict | 0 | 0 | 1851863 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3327 | Northgate | 47.705056 | -122.337551 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North College Park | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 88.0 | 1 | moderate | 0 | 0 | 8130015 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3328 | Northgate | 47.696785 | -122.334801 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North College Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 70.0 | 1 | flexible | 0 | 0 | 8957312 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3329 | Northgate | 47.705198 | -122.334770 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North College Park | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 100.0 | 1 | flexible | 0 | 0 | 2426152 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3330 | Northgate | 47.704310 | -122.339242 | Apartment | 4.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | North College Park | Entire home/apt | 4 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 3 | flexible | 0 | 0 | 7826447 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3331 | Northgate | 47.704210 | -122.341137 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | North College Park | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 129.0 | 1 | strict | 0 | 0 | 9595087 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3332 | Northgate | 47.691463 | -122.342916 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North College Park | Private room | 3 | 2.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 50.0 | 1 | flexible | 0 | 0 | 8524565 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3333 | Northgate | 47.692346 | -122.337911 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North College Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 96.0 | 1 | flexible | 0 | 0 | 1561256 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3334 | Northgate | 47.693596 | -122.340423 | House | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | North College Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 3 | moderate | 1 | 1 | 2686624 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3335 | Northgate | 47.698256 | -122.342230 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North College Park | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 189.0 | 3 | strict | 0 | 0 | 2897897 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3336 | Northgate | 47.694537 | -122.331895 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North College Park | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 55.0 | 1 | flexible | 0 | 0 | 7748349 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3337 | Northgate | 47.704953 | -122.343314 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | North College Park | Entire home/apt | 2 | 0.0 | 2.0 | 99.0 | 4 | flexible | 0 | 0 | 704477 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3338 | Northgate | 47.700555 | -122.344568 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | North College Park | Private room | 2 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Indoor Firepla... | 50.0 | 1 | moderate | 0 | 0 | 8411627 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3339 | Northgate | 47.696162 | -122.332813 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North College Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 1 | flexible | 0 | 0 | 7559939 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3340 | Northgate | 47.694648 | -122.332768 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | North College Park | Entire home/apt | 4 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 79.0 | 1 | moderate | 0 | 0 | 8870139 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3341 | Northgate | 47.696784 | -122.332917 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North College Park | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 55.0 | 1 | moderate | 0 | 0 | 7198282 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3342 | Northgate | 47.696372 | -122.330998 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | North College Park | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 65.0 | 1 | flexible | 0 | 0 | 7441508 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3343 | Other neighborhoods | 47.680873 | -122.356130 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 95.0 | 2 | moderate | 0 | 0 | 5882923 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3344 | Other neighborhoods | 47.683175 | -122.363212 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | moderate | 0 | 0 | 6445769 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3345 | Other neighborhoods | 47.680780 | -122.351565 | Apartment | 2.0 | Real Bed | within a day | 86.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 135.0 | 6 | moderate | 0 | 0 | 3959460 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3346 | Other neighborhoods | 47.677086 | -122.351367 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 87.0 | 1 | flexible | 0 | 0 | 7974112 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3347 | Other neighborhoods | 47.680668 | -122.358127 | Apartment | 2.0 | Real Bed | within an hour | 83.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 97.0 | 4 | strict | 0 | 0 | 320704 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3348 | Other neighborhoods | 47.678204 | -122.365994 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises","Pets live ... | 78.0 | 1 | flexible | 0 | 0 | 3250577 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3349 | Other neighborhoods | 47.675164 | -122.354328 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 3 | moderate | 0 | 0 | 8053049 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3350 | Other neighborhoods | 47.680360 | -122.364202 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 2.0 | Internet,"Wireless Internet","Air Conditioning... | 95.0 | 1 | moderate | 0 | 0 | 7349099 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3351 | Other neighborhoods | 47.673057 | -122.351639 | House | 10.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 16 | 4.0 | 7.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 375.0 | 4 | strict | 1 | 1 | 5022572 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3352 | Other neighborhoods | 47.679041 | -122.348116 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.5 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 150.0 | 4 | strict | 0 | 0 | 10191917 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3353 | Other neighborhoods | 47.670453 | -122.359945 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 325.0 | 2 | moderate | 0 | 0 | 5123904 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3354 | Other neighborhoods | 47.677824 | -122.365160 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 2 | 3.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 60.0 | 5 | strict | 0 | 0 | 2471731 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3355 | Other neighborhoods | 47.678552 | -122.365822 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 50.0 | 1 | flexible | 0 | 0 | 7803176 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3356 | Other neighborhoods | 47.666734 | -122.357290 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 2 | flexible | 0 | 0 | 4318814 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3357 | Other neighborhoods | 47.677821 | -122.361698 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 88.0 | 1 | flexible | 0 | 0 | 4187961 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3358 | Other neighborhoods | 47.678137 | -122.346061 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | strict | 0 | 0 | 7161897 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3359 | Other neighborhoods | 47.681293 | -122.353215 | House | 1.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 195.0 | 2 | strict | 1 | 1 | 8611952 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3360 | Other neighborhoods | 47.671626 | -122.351913 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Phinney Ridge | Private room | 3 | 2.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 50.0 | 2 | moderate | 0 | 0 | 5805907 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3361 | Other neighborhoods | 47.674438 | -122.355702 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 5 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 250.0 | 10 | strict | 0 | 0 | 5433597 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3362 | Other neighborhoods | 47.675871 | -122.353042 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 87.0 | 1 | flexible | 0 | 0 | 7968548 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3363 | Other neighborhoods | 47.670691 | -122.355820 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 207.0 | 2 | strict | 0 | 0 | 4638785 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| 3364 | Other neighborhoods | 47.673913 | -122.355420 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Phinney Ridge | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 70.0 | 1 | strict | 0 | 0 | 4104442 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3365 | Other neighborhoods | 47.675587 | -122.349469 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 100.0 | 1 | flexible | 0 | 0 | 3883041 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3366 | Other neighborhoods | 47.677739 | -122.356711 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 175.0 | 1 | strict | 0 | 0 | 8441477 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3367 | Other neighborhoods | 47.671201 | -122.349939 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Phinney Ridge | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 165.0 | 2 | moderate | 0 | 0 | 6119785 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3368 | Other neighborhoods | 47.671141 | -122.351914 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 120.0 | 3 | moderate | 0 | 0 | 103466 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3369 | Other neighborhoods | 47.677150 | -122.362194 | House | 5.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 8 | 2.0 | 3.0 | TV,"Wireless Internet",Kitchen,Heating,"Family... | 239.0 | 3 | strict | 1 | 1 | 8168876 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3370 | Other neighborhoods | 47.670957 | -122.356430 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 5 | strict | 0 | 0 | 2557712 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3371 | Other neighborhoods | 47.678894 | -122.356033 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 135.0 | 2 | moderate | 0 | 0 | 3238295 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3372 | Other neighborhoods | 47.672977 | -122.352263 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,Heat... | 155.0 | 2 | strict | 0 | 0 | 4784639 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3373 | Other neighborhoods | 47.680179 | -122.356169 | Apartment | 2.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | 95.0 | 3 | strict | 1 | 1 | 4403171 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3374 | Other neighborhoods | 47.677456 | -122.357631 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 5 | 1.0 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 78.0 | 2 | moderate | 1 | 1 | 1133329 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3375 | Other neighborhoods | 47.671003 | -122.359718 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 50.0 | 1 | moderate | 0 | 0 | 2723368 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3376 | Other neighborhoods | 47.675116 | -122.351922 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 5 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 2 | moderate | 0 | 0 | 7420762 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3377 | Other neighborhoods | 47.677484 | -122.346518 | Apartment | 2.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,Heating | 151.0 | 2 | strict | 0 | 0 | 4947002 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3378 | Other neighborhoods | 47.675902 | -122.354186 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 75.0 | 2 | flexible | 0 | 0 | 3209633 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3379 | Other neighborhoods | 47.682538 | -122.354507 | Apartment | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 160.0 | 3 | strict | 1 | 1 | 4395502 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3380 | Other neighborhoods | 47.670200 | -122.356089 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 189.0 | 2 | moderate | 0 | 0 | 6992387 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3381 | Other neighborhoods | 47.665493 | -122.348763 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | strict | 0 | 0 | 9068419 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3382 | Other neighborhoods | 47.680868 | -122.354912 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 112.0 | 7 | moderate | 0 | 0 | 5029665 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3383 | Other neighborhoods | 47.667825 | -122.358493 | House | 4.0 | Real Bed | within a few hours | 83.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 8 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 400.0 | 4 | flexible | 0 | 0 | 9229043 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 3384 | Other neighborhoods | 47.680491 | -122.355602 | Apartment | 3.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 2.0 | 2.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 175.0 | 3 | strict | 1 | 1 | 4084398 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3385 | Other neighborhoods | 47.682545 | -122.351066 | Apartment | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 2 | strict | 0 | 0 | 6577729 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3386 | Other neighborhoods | 47.674510 | -122.352670 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 5 | 2.0 | 3.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 350.0 | 2 | flexible | 0 | 0 | 9199082 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3387 | Other neighborhoods | 47.668697 | -122.340262 | Apartment | 1.0 | Real Bed | within a day | 58.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 150.0 | 1 | flexible | 0 | 0 | 7970663 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3388 | Other neighborhoods | 47.680618 | -122.353254 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 55.0 | 2 | moderate | 0 | 0 | 2858482 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3389 | Other neighborhoods | 47.678058 | -122.364481 | House | 2.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 3 | flexible | 0 | 0 | 9715029 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3390 | Other neighborhoods | 47.667139 | -122.358389 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 2 | strict | 0 | 0 | 7748866 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3391 | Other neighborhoods | 47.678709 | -122.364266 | House | 1.0 | Real Bed | within a day | 68.0 | 100.0 | 0 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 50.0 | 1 | flexible | 0 | 0 | 9739482 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3392 | Other neighborhoods | 47.666283 | -122.340505 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 95.0 | 1 | strict | 0 | 0 | 5078129 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3393 | Other neighborhoods | 47.682359 | -122.352370 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 7 | 1.0 | 3.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 175.0 | 3 | moderate | 0 | 0 | 2808357 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3394 | Other neighborhoods | 47.668817 | -122.360507 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 50.0 | 2 | moderate | 1 | 1 | 6543677 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3395 | Other neighborhoods | 47.677705 | -122.359839 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 190.0 | 3 | strict | 0 | 0 | 202251 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3396 | Other neighborhoods | 47.674558 | -122.360118 | House | 4.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 7 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 7 | flexible | 0 | 0 | 8402434 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3397 | Other neighborhoods | 47.665866 | -122.348627 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 145.0 | 1 | strict | 0 | 0 | 6438518 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3398 | Other neighborhoods | 47.664409 | -122.356325 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 90.0 | 2 | flexible | 0 | 0 | 5444457 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3399 | Other neighborhoods | 47.674053 | -122.348922 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Phinney Ridge | Entire home/apt | 8 | 3.5 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 349.0 | 1 | strict | 0 | 0 | 7574864 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3400 | Other neighborhoods | 47.678909 | -122.363504 | Other | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 150.0 | 2 | flexible | 0 | 0 | 2969955 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3401 | Other neighborhoods | 47.676936 | -122.347610 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 105.0 | 2 | moderate | 0 | 0 | 9473312 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3402 | Other neighborhoods | 47.677166 | -122.361693 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 95.0 | 3 | moderate | 0 | 1 | 254340 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3403 | Other neighborhoods | 47.678046 | -122.360426 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 85.0 | 3 | moderate | 1 | 1 | 496074 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3404 | Other neighborhoods | 47.665956 | -122.356368 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 2 | 1.5 | 1.0 | Internet,"Wireless Internet",Heating,Washer,Dr... | 52.0 | 1 | moderate | 0 | 0 | 9217337 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 |
| 3405 | Other neighborhoods | 47.683066 | -122.349342 | House | 1.0 | Real Bed | within a day | 67.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 2 | flexible | 0 | 0 | 4130102 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3406 | Other neighborhoods | 47.679371 | -122.356968 | Apartment | 1.0 | Futon | within a few hours | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 100.0 | 2 | moderate | 1 | 1 | 1256892 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3407 | Other neighborhoods | 47.666439 | -122.358405 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 110.0 | 20 | flexible | 0 | 0 | 9348375 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3408 | Other neighborhoods | 47.671810 | -122.350426 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Shared room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Essentials,Shampoo | 67.0 | 1 | flexible | 0 | 0 | 4598160 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3409 | Other neighborhoods | 47.680654 | -122.354165 | Apartment | 1.0 | Real Bed | within a few hours | 70.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 75.0 | 2 | strict | 0 | 0 | 6127974 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3410 | Other neighborhoods | 47.679447 | -122.363549 | House | 1.0 | Real Bed | within an hour | 88.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 69.0 | 3 | strict | 1 | 1 | 748526 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 3411 | Other neighborhoods | 47.676776 | -122.365739 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Heating,"Family/Kid Fri... | 96.0 | 2 | moderate | 0 | 0 | 3908378 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 3412 | Other neighborhoods | 47.683082 | -122.349008 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Phinney Ridge | Private room | 2 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Indoor Firepla... | 60.0 | 1 | flexible | 0 | 0 | 2868006 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3413 | Other neighborhoods | 47.672367 | -122.352041 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 95.0 | 1 | moderate | 0 | 0 | 5683646 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3414 | Other neighborhoods | 47.672610 | -122.359942 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Phinney Ridge | Private room | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 100.0 | 3 | moderate | 0 | 0 | 2762241 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3415 | Other neighborhoods | 47.669112 | -122.360223 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Phinney Ridge | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 55.0 | 3 | moderate | 1 | 1 | 4760181 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3416 | Other neighborhoods | 47.673518 | -122.274940 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Windermere | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 130.0 | 1 | moderate | 0 | 0 | 4287974 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3417 | Other neighborhoods | 47.671587 | -122.259947 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Windermere | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | strict | 0 | 0 | 48848 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3418 | Other neighborhoods | 47.669584 | -122.262711 | House | 5.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Windermere | Entire home/apt | 6 | 3.0 | 5.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 300.0 | 4 | moderate | 0 | 0 | 9999759 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3419 | Other neighborhoods | 47.671857 | -122.274578 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Windermere | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 3 | moderate | 0 | 0 | 3774113 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3420 | Other neighborhoods | 47.661370 | -122.267995 | House | 7.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Windermere | Entire home/apt | 12 | 3.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 400.0 | 3 | strict | 0 | 0 | 8227710 | 8.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3421 | Other neighborhoods | 47.668410 | -122.270247 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Windermere | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 3 | strict | 0 | 0 | 23919 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3422 | Other neighborhoods | 47.672532 | -122.278571 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Windermere | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 117.0 | 1 | moderate | 0 | 0 | 7698721 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3423 | Other neighborhoods | 47.671450 | -122.276368 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Windermere | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 85.0 | 2 | moderate | 0 | 0 | 7872818 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 3424 | Other neighborhoods | 47.670757 | -122.276709 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Windermere | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Breakfast,"Hot Tub... | 115.0 | 2 | moderate | 0 | 0 | 8289871 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3425 | Other neighborhoods | 47.671054 | -122.278907 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 1 | Windermere | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 62.0 | 1 | strict | 0 | 0 | 1737244 | 9.857143 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3426 | Other neighborhoods | 47.663983 | -122.274826 | Cabin | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Laurelhurst | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 100.0 | 2 | moderate | 0 | 0 | 1429904 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3427 | Other neighborhoods | 47.660946 | -122.286858 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Laurelhurst | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 100.0 | 1 | flexible | 0 | 0 | 9074837 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 3428 | Other neighborhoods | 47.665025 | -122.280534 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Laurelhurst | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 60.0 | 2 | moderate | 0 | 0 | 4278896 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3429 | Other neighborhoods | 47.659640 | -122.270778 | Apartment | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Laurelhurst | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 185.0 | 3 | moderate | 0 | 0 | 4016079 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3430 | Other neighborhoods | 47.657383 | -122.285788 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Laurelhurst | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Breakfast,"Pets l... | 99.0 | 1 | moderate | 0 | 0 | 7389950 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3431 | Other neighborhoods | 47.659986 | -122.272246 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Laurelhurst | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 2 | moderate | 0 | 0 | 3529563 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3432 | Other neighborhoods | 47.657241 | -122.284774 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Laurelhurst | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 125.0 | 1 | moderate | 0 | 0 | 8612922 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 3433 | Other neighborhoods | 47.664591 | -122.281644 | Apartment | 1.0 | Airbed | 0 | 0.0 | 0.0 | 0 | Laurelhurst | Private room | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises",Heating,"Sm... | 60.0 | 1 | moderate | 0 | 0 | 7564942 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3434 | Other neighborhoods | 47.665806 | -122.281438 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Laurelhurst | Entire home/apt | 4 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 100.0 | 4 | strict | 0 | 0 | 5228066 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3435 | Other neighborhoods | 47.666225 | -122.276756 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Laurelhurst | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 55.0 | 1 | flexible | 0 | 0 | 8150045 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 3436 | Magnolia | 47.648067 | -122.382861 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Southeast Magnolia | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 550.0 | 1 | flexible | 0 | 0 | 3413183 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3437 | Magnolia | 47.644179 | -122.383847 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Southeast Magnolia | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 75.0 | 2 | moderate | 0 | 0 | 3123041 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 |
| 3438 | Magnolia | 47.647815 | -122.388982 | House | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Southeast Magnolia | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 95.0 | 1 | strict | 0 | 0 | 2492143 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3439 | Magnolia | 47.646571 | -122.388418 | Loft | 1.0 | Pull-out Sofa | within a day | 88.0 | 100.0 | 1 | Southeast Magnolia | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 150.0 | 1 | moderate | 0 | 0 | 6714652 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3440 | Magnolia | 47.647679 | -122.392474 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Southeast Magnolia | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 1 | strict | 0 | 0 | 6678058 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3441 | Magnolia | 47.632971 | -122.394887 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Southeast Magnolia | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 228.0 | 2 | strict | 1 | 1 | 1696194 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3442 | Magnolia | 47.647765 | -122.382507 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Southeast Magnolia | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 110.0 | 2 | strict | 0 | 0 | 9352778 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3443 | Magnolia | 47.641620 | -122.389725 | House | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Southeast Magnolia | Entire home/apt | 6 | 3.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Poo... | 950.0 | 3 | strict | 0 | 0 | 2720963 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3444 | Magnolia | 47.643363 | -122.388165 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Southeast Magnolia | Entire home/apt | 4 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 225.0 | 7 | strict | 0 | 0 | 6591879 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3445 | Magnolia | 47.645710 | -122.392060 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Southeast Magnolia | Entire home/apt | 6 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 1 | strict | 0 | 0 | 10023353 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 3446 | Magnolia | 47.646538 | -122.393738 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Southeast Magnolia | Private room | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 68.0 | 3 | flexible | 0 | 0 | 8207987 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3447 | Magnolia | 47.646673 | -122.384965 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Southeast Magnolia | Entire home/apt | 6 | 1.5 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 250.0 | 2 | moderate | 0 | 0 | 3971346 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3448 | Magnolia | 47.641206 | -122.386866 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 1 | Southeast Magnolia | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | strict | 1 | 1 | 3382533 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3449 | Magnolia | 47.638624 | -122.388013 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Southeast Magnolia | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 48.0 | 2 | moderate | 0 | 0 | 8943821 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3450 | Magnolia | 47.637913 | -122.391264 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Southeast Magnolia | Entire home/apt | 8 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 330.0 | 3 | strict | 0 | 0 | 4485424 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3451 | Magnolia | 47.640325 | -122.386649 | Apartment | 1.0 | Real Bed | within an hour | 98.0 | 100.0 | 1 | Southeast Magnolia | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | strict | 1 | 1 | 7227464 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3452 | Magnolia | 47.643253 | -122.384765 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Southeast Magnolia | Entire home/apt | 4 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 2 | flexible | 0 | 0 | 2958318 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3453 | Delridge | 47.546759 | -122.370560 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | High Point | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 80.0 | 1 | flexible | 0 | 0 | 4066344 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3454 | Delridge | 47.538064 | -122.367422 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | High Point | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 70.0 | 1 | flexible | 0 | 0 | 8012443 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3455 | Delridge | 47.538322 | -122.366035 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | High Point | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 70.0 | 1 | flexible | 0 | 0 | 8094338 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3456 | Delridge | 47.534633 | -122.364680 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | High Point | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 72.0 | 1 | moderate | 0 | 0 | 5096363 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3457 | Delridge | 47.550688 | -122.375050 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | High Point | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet","Pets Allowed",Br... | 99.0 | 4 | moderate | 0 | 0 | 1980283 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 |
| 3458 | Delridge | 47.548016 | -122.375707 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | High Point | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Free Parking ... | 78.0 | 1 | moderate | 0 | 0 | 2761092 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 3459 | Delridge | 47.542949 | -122.375406 | Apartment | 1.0 | Airbed | 0 | 0.0 | 0.0 | 0 | High Point | Private room | 2 | 1.5 | 1.0 | Kitchen,Heating,"Smoke Detector","Fire Extingu... | 300.0 | 1 | flexible | 0 | 0 | 4163204 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3460 | Delridge | 47.553251 | -122.362994 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | High Point | Entire home/apt | 5 | 1.0 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 250.0 | 2 | moderate | 0 | 0 | 1145148 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3461 | Delridge | 47.552960 | -122.373114 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | High Point | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 39.0 | 1 | moderate | 0 | 0 | 7039427 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3462 | Delridge | 47.542942 | -122.361555 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | High Point | Entire home/apt | 6 | 1.0 | 3.0 | TV,Internet,Kitchen,"Hot Tub","Indoor Fireplac... | 95.0 | 30 | strict | 0 | 0 | 7527242 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3463 | Delridge | 47.550297 | -122.372696 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | High Point | Private room | 2 | 0.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 97.0 | 1 | flexible | 0 | 0 | 8286095 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3464 | Delridge | 47.553642 | -122.364169 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | High Point | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 102.0 | 3 | strict | 1 | 1 | 9238818 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3465 | Delridge | 47.545533 | -122.367316 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | High Point | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 60.0 | 1 | flexible | 0 | 0 | 3025456 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3466 | Delridge | 47.546028 | -122.371080 | Townhouse | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | High Point | Private room | 4 | 1.5 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 49.0 | 1 | strict | 0 | 0 | 6888107 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3467 | West Seattle | 47.554202 | -122.390590 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 3242605 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3468 | West Seattle | 47.556000 | -122.393203 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Seaview | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 79.0 | 2 | moderate | 0 | 0 | 6118198 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3469 | West Seattle | 47.545431 | -122.397837 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Seaview | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 76.0 | 2 | moderate | 1 | 1 | 189156 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 3470 | West Seattle | 47.552013 | -122.393693 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 110.0 | 2 | moderate | 0 | 0 | 6990677 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3471 | West Seattle | 47.555693 | -122.387525 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Seaview | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 110.0 | 2 | flexible | 0 | 0 | 8194886 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3472 | West Seattle | 47.556913 | -122.388263 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 59.0 | 1 | flexible | 0 | 0 | 8645226 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3473 | West Seattle | 47.555752 | -122.400045 | House | 2.0 | Real Bed | a few days or more | 40.0 | 100.0 | 0 | Seaview | Entire home/apt | 7 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 195.0 | 1 | strict | 1 | 1 | 859467 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3474 | West Seattle | 47.559149 | -122.397575 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 85.0 | 1 | flexible | 0 | 0 | 9096972 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 |
| 3475 | West Seattle | 47.547338 | -122.390466 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Seaview | Entire home/apt | 7 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | moderate | 0 | 0 | 1246117 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3476 | West Seattle | 47.558723 | -122.388322 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 109.0 | 1 | strict | 0 | 0 | 7665415 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3477 | West Seattle | 47.559295 | -122.402594 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | strict | 0 | 0 | 8583457 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3478 | West Seattle | 47.554840 | -122.387057 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Seaview | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 135.0 | 3 | strict | 0 | 0 | 146301 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3479 | Other neighborhoods | 47.549482 | -122.317788 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Georgetown | Private room | 2 | 3.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 70.0 | 2 | strict | 1 | 1 | 677266 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3480 | Other neighborhoods | 47.550620 | -122.320135 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Georgetown | Private room | 2 | 3.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 90.0 | 2 | strict | 1 | 1 | 9419 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3481 | Other neighborhoods | 47.545437 | -122.319127 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Georgetown | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 50.0 | 1 | flexible | 0 | 0 | 1950012 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3482 | Other neighborhoods | 47.546247 | -122.319642 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Georgetown | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Indoor Firepla... | 99.0 | 1 | moderate | 1 | 0 | 9508837 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3483 | Other neighborhoods | 47.549691 | -122.318679 | Other | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Georgetown | Private room | 2 | 3.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 70.0 | 2 | moderate | 1 | 1 | 226677 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3484 | Other neighborhoods | 47.545978 | -122.320691 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Georgetown | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 1 | flexible | 1 | 0 | 7256122 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3485 | Other neighborhoods | 47.544880 | -122.321158 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Georgetown | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 90.0 | 2 | moderate | 0 | 0 | 6765354 | 9.142857 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 3486 | Other neighborhoods | 47.550043 | -122.317799 | Other | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Georgetown | Private room | 2 | 3.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 75.0 | 2 | moderate | 1 | 1 | 3303376 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3487 | Other neighborhoods | 47.521168 | -122.328755 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | South Park | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 1 | flexible | 0 | 0 | 10060388 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 3488 | Other neighborhoods | 47.528935 | -122.325237 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | South Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 1 | flexible | 0 | 0 | 8570596 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3489 | Other neighborhoods | 47.526680 | -122.316036 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | South Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 105.0 | 2 | moderate | 0 | 0 | 4589654 | 9.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3490 | Delridge | 47.527903 | -122.368247 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Roxhill | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 2 | strict | 0 | 0 | 7843145 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3491 | Delridge | 47.528169 | -122.376347 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Roxhill | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 60.0 | 1 | flexible | 0 | 0 | 8194164 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3492 | Delridge | 47.526689 | -122.349339 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Highland Park | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 59.0 | 1 | flexible | 0 | 0 | 4252591 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3493 | Delridge | 47.530460 | -122.353332 | House | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Highland Park | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 65.0 | 1 | flexible | 0 | 0 | 6810430 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3494 | Delridge | 47.524486 | -122.353801 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Highland Park | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 58.0 | 2 | strict | 1 | 1 | 902609 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 3495 | Delridge | 47.518298 | -122.350687 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Highland Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 120.0 | 2 | moderate | 1 | 1 | 696004 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3496 | Delridge | 47.525433 | -122.343465 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Highland Park | Private room | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 150.0 | 2 | flexible | 0 | 0 | 4824581 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 3497 | Delridge | 47.525789 | -122.344512 | House | 1.0 | Real Bed | a few days or more | 43.0 | 100.0 | 0 | Highland Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 55.0 | 1 | moderate | 0 | 1 | 72743 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3498 | Delridge | 47.529747 | -122.349092 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Highland Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 7 | strict | 0 | 0 | 6019762 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3499 | Delridge | 47.525090 | -122.352910 | House | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Highland Park | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 1 | flexible | 0 | 0 | 6133684 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3500 | Delridge | 47.527554 | -122.350677 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Highland Park | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 75.0 | 1 | flexible | 0 | 0 | 4182732 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3501 | Delridge | 47.527097 | -122.346338 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Highland Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 53.0 | 1 | flexible | 0 | 0 | 6479027 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3502 | Delridge | 47.518818 | -122.352598 | House | 2.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Highland Park | Entire home/apt | 4 | 2.0 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 129.0 | 2 | moderate | 0 | 0 | 2508065 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3503 | Capitol Hill | 47.638671 | -122.276857 | Apartment | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Madison Park | Shared room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 30.0 | 2 | flexible | 0 | 0 | 8089781 | 9.857143 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3504 | Capitol Hill | 47.640942 | -122.276974 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madison Park | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 70.0 | 2 | strict | 0 | 0 | 7692789 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3505 | Capitol Hill | 47.641933 | -122.280189 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Madison Park | Private room | 2 | 1.0 | 1.0 | Pool,Kitchen,"Free Parking on Premises",Heatin... | 80.0 | 1 | moderate | 0 | 0 | 8136553 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3506 | Capitol Hill | 47.634204 | -122.280113 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 2 | moderate | 1 | 1 | 1042022 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3507 | Capitol Hill | 47.634079 | -122.278897 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Air Conditioning",Kitchen,"Free Parking on... | 95.0 | 2 | flexible | 0 | 0 | 8863714 | 8.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3508 | Capitol Hill | 47.629316 | -122.293649 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 8 | 2.5 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 285.0 | 2 | strict | 0 | 0 | 4557204 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3509 | Capitol Hill | 47.638004 | -122.277791 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 109.0 | 3 | strict | 0 | 0 | 6644760 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3510 | Capitol Hill | 47.634713 | -122.279367 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Pet... | 275.0 | 1 | flexible | 0 | 0 | 8764748 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3511 | Capitol Hill | 47.633192 | -122.288294 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madison Park | Private room | 4 | 2.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 190.0 | 5 | flexible | 0 | 0 | 9342299 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3512 | Capitol Hill | 47.636615 | -122.276882 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madison Park | Entire home/apt | 2 | 1.0 | 1.0 | 80.0 | 1 | flexible | 0 | 0 | 4464542 | 8.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3513 | Capitol Hill | 47.639180 | -122.280161 | House | 1.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Madison Park | Entire home/apt | 2 | 2.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 1 | flexible | 0 | 0 | 3817141 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3514 | Capitol Hill | 47.640208 | -122.279748 | Apartment | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Madison Park | Entire home/apt | 3 | 1.0 | 1.0 | TV,Pool,Kitchen,Heating,Washer,Dryer,"Smoke De... | 70.0 | 3 | moderate | 0 | 0 | 2103939 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3515 | Capitol Hill | 47.637134 | -122.276798 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 139.0 | 3 | strict | 0 | 0 | 8387068 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3516 | Capitol Hill | 47.628403 | -122.289938 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Madison Park | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Air Conditioning",Kitchen,"Free P... | 75.0 | 2 | flexible | 0 | 0 | 5249067 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3517 | Capitol Hill | 47.640923 | -122.277634 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 1 | moderate | 0 | 0 | 7620570 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3518 | Capitol Hill | 47.636647 | -122.276858 | Condominium | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Madison Park | Entire home/apt | 5 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 215.0 | 3 | strict | 0 | 0 | 6993726 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3519 | Capitol Hill | 47.639851 | -122.279895 | Apartment | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Madison Park | Private room | 1 | 1.0 | 1.0 | TV,Kitchen,"Free Parking on Premises",Heating,... | 60.0 | 1 | flexible | 0 | 0 | 9463491 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3520 | Capitol Hill | 47.623609 | -122.310881 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 5 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 250.0 | 4 | flexible | 0 | 0 | 6908161 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3521 | Capitol Hill | 47.620507 | -122.309978 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | strict | 0 | 0 | 9169270 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3522 | Capitol Hill | 47.621082 | -122.310785 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 5 | 2.0 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 139.0 | 2 | flexible | 0 | 0 | 7940358 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3523 | Capitol Hill | 47.623236 | -122.306897 | Apartment | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 2.0 | "Wireless Internet",Kitchen,Heating | 104.0 | 2 | moderate | 0 | 0 | 4632923 | 8.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3524 | Capitol Hill | 47.619612 | -122.302455 | House | 2.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 2.5 | 2.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 125.0 | 30 | strict | 0 | 0 | 2764126 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3525 | Capitol Hill | 47.630112 | -122.301934 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 33.0 | 2 | strict | 0 | 0 | 4710866 | 9.857143 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |
| 3526 | Capitol Hill | 47.629543 | -122.301695 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 27.0 | 2 | strict | 0 | 0 | 3994601 | 9.571429 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3527 | Capitol Hill | 47.631216 | -122.303460 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 29.0 | 2 | strict | 0 | 0 | 7873208 | 10.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3528 | Capitol Hill | 47.631470 | -122.301881 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 29.0 | 2 | strict | 0 | 0 | 3811828 | 9.571429 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3529 | Capitol Hill | 47.629740 | -122.301834 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 29.0 | 2 | strict | 0 | 0 | 7873345 | 9.285714 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3530 | Capitol Hill | 47.631401 | -122.303085 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 30.0 | 2 | strict | 0 | 0 | 3811930 | 9.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3531 | Capitol Hill | 47.630585 | -122.309700 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 65.0 | 2 | flexible | 0 | 0 | 2670365 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3532 | Capitol Hill | 47.618496 | -122.309342 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 5.0 | 1.0 | "Wireless Internet",Heating,Shampoo | 125.0 | 2 | moderate | 0 | 0 | 4225225 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 3533 | Capitol Hill | 47.628722 | -122.301530 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 84.0 | 2 | moderate | 0 | 0 | 5728135 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3534 | Capitol Hill | 47.623138 | -122.308250 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 70.0 | 2 | moderate | 0 | 0 | 1818768 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3535 | Capitol Hill | 47.629016 | -122.309804 | House | 1.0 | Real Bed | within a few hours | 63.0 | 100.0 | 0 | Stevens | Private room | 2 | 3.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 90.0 | 4 | flexible | 0 | 0 | 8689375 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3536 | Capitol Hill | 47.619067 | -122.306979 | Townhouse | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 100.0 | 1 | flexible | 0 | 0 | 9509695 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3537 | Capitol Hill | 47.628057 | -122.299544 | House | 1.0 | Airbed | within a few hours | 90.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 40.0 | 1 | flexible | 0 | 0 | 9156273 | 9.428571 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 3538 | Capitol Hill | 47.621214 | -122.304906 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 1 | flexible | 0 | 0 | 6185083 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3539 | Capitol Hill | 47.621937 | -122.307330 | House | 1.0 | Pull-out Sofa | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 90.0 | 1 | flexible | 0 | 0 | 5738982 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3540 | Capitol Hill | 47.635010 | -122.304664 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 150.0 | 11 | flexible | 0 | 0 | 8969737 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3541 | Capitol Hill | 47.617144 | -122.309594 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 155.0 | 2 | moderate | 0 | 0 | 2500188 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 |
| 3542 | Capitol Hill | 47.621090 | -122.307057 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 1 | 5.0 | 1.0 | "Wireless Internet",Heating | 145.0 | 4 | moderate | 0 | 0 | 3416590 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
| 3543 | Capitol Hill | 47.619203 | -122.309389 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | 165.0 | 2 | moderate | 0 | 0 | 6074312 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3544 | Capitol Hill | 47.623462 | -122.297344 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 125.0 | 1 | flexible | 0 | 0 | 9696950 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3545 | Capitol Hill | 47.633977 | -122.310726 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 1 | flexible | 0 | 0 | 9920856 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3546 | Capitol Hill | 47.619352 | -122.309055 | Apartment | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 65.0 | 1 | flexible | 0 | 0 | 2268329 | 9.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 3547 | Capitol Hill | 47.618098 | -122.309791 | Bed & Breakfast | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Bre... | 146.0 | 1 | flexible | 0 | 0 | 8868025 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 3548 | Capitol Hill | 47.628658 | -122.309927 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 125.0 | 1 | strict | 0 | 0 | 1049293 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3549 | Capitol Hill | 47.630279 | -122.300481 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 2 | flexible | 0 | 0 | 4401544 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3550 | Capitol Hill | 47.624638 | -122.304884 | Bungalow | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 140.0 | 2 | flexible | 0 | 0 | 7275464 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3551 | Capitol Hill | 47.624059 | -122.300567 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 3 | strict | 0 | 0 | 7823973 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3552 | Capitol Hill | 47.621804 | -122.308287 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | flexible | 0 | 0 | 8507873 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3553 | Capitol Hill | 47.620051 | -122.309335 | Apartment | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 45.0 | 2 | moderate | 0 | 0 | 8131881 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3554 | Capitol Hill | 47.622152 | -122.307976 | Townhouse | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Breakf... | 300.0 | 1 | strict | 0 | 0 | 6592178 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3555 | Capitol Hill | 47.625138 | -122.305562 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 150.0 | 2 | strict | 0 | 1 | 825574 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3556 | Capitol Hill | 47.619178 | -122.307016 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 2 | moderate | 0 | 0 | 194313 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3557 | Capitol Hill | 47.631465 | -122.308471 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 139.0 | 2 | flexible | 0 | 0 | 5470943 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3558 | Capitol Hill | 47.619565 | -122.311730 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 100.0 | 2 | strict | 0 | 0 | 1547337 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3559 | Capitol Hill | 47.620395 | -122.312147 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 180.0 | 2 | moderate | 0 | 0 | 3932674 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3560 | Capitol Hill | 47.631557 | -122.301958 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 30.0 | 2 | strict | 0 | 0 | 3811955 | 9.142857 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3561 | Capitol Hill | 47.629887 | -122.308592 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 399.0 | 4 | flexible | 0 | 0 | 6911511 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3562 | Capitol Hill | 47.629067 | -122.307913 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 4 | 1.5 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 300.0 | 3 | strict | 0 | 0 | 5040885 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3563 | Capitol Hill | 47.622715 | -122.301378 | House | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 51.0 | 2 | moderate | 0 | 0 | 1633025 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3564 | Capitol Hill | 47.621185 | -122.309500 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,Heating,Washer,... | 70.0 | 2 | moderate | 0 | 0 | 7492006 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3565 | Capitol Hill | 47.620498 | -122.310591 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet","Air Conditioning",Kitc... | 104.0 | 1 | strict | 0 | 0 | 7368959 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3566 | Capitol Hill | 47.624014 | -122.301761 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Stevens | Private room | 1 | 3.0 | 1.0 | 80.0 | 1 | flexible | 0 | 0 | 6934128 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
| 3567 | Capitol Hill | 47.622298 | -122.306793 | Apartment | 1.0 | Airbed | within a day | 100.0 | 0.0 | 0 | Stevens | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Pool,Kitchen,H... | 50.0 | 1 | flexible | 0 | 0 | 8409695 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3568 | Capitol Hill | 47.622471 | -122.297916 | Condominium | 2.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Stevens | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 7050204 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3569 | Capitol Hill | 47.619707 | -122.306547 | Apartment | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 8926188 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3570 | Capitol Hill | 47.632237 | -122.311898 | Apartment | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 200.0 | 2 | moderate | 0 | 0 | 5297143 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3571 | Capitol Hill | 47.631320 | -122.309165 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 1 | flexible | 0 | 0 | 6228211 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3572 | Capitol Hill | 47.627216 | -122.299907 | House | 2.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 115.0 | 14 | moderate | 0 | 0 | 1815677 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3573 | Capitol Hill | 47.623379 | -122.312103 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 85.0 | 2 | moderate | 0 | 0 | 4388148 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3574 | Capitol Hill | 47.620167 | -122.307855 | Apartment | 1.0 | Real Bed | within a few hours | 71.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 1 | strict | 0 | 0 | 1432713 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3575 | Capitol Hill | 47.637934 | -122.313506 | House | 3.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 400.0 | 1 | strict | 0 | 0 | 4454264 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3576 | Capitol Hill | 47.624221 | -122.300185 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Stevens | Private room | 1 | 2.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 95.0 | 1 | flexible | 0 | 0 | 5164194 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3577 | Capitol Hill | 47.628831 | -122.305410 | House | 9.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 14 | 3.5 | 6.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 545.0 | 5 | strict | 0 | 0 | 6066570 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3578 | Capitol Hill | 47.623046 | -122.304907 | House | 2.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 4 | 2.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 250.0 | 2 | strict | 0 | 0 | 1880734 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3579 | Capitol Hill | 47.627704 | -122.309023 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 150.0 | 1 | flexible | 0 | 0 | 7127036 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3580 | Capitol Hill | 47.615252 | -122.312001 | Apartment | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 22.0 | 1 | flexible | 0 | 0 | 10248139 | 4.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3581 | Capitol Hill | 47.621473 | -122.311637 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 120.0 | 2 | strict | 1 | 1 | 1974131 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3582 | Capitol Hill | 47.618636 | -122.310799 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 5 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 140.0 | 2 | strict | 0 | 0 | 8306581 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3583 | Capitol Hill | 47.621621 | -122.301295 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 125.0 | 3 | strict | 0 | 0 | 6627184 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3584 | Capitol Hill | 47.617818 | -122.306410 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 126.0 | 2 | strict | 0 | 0 | 2211594 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3585 | Capitol Hill | 47.623390 | -122.307767 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 150.0 | 1 | flexible | 0 | 0 | 8613792 | 4.285714 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3586 | Capitol Hill | 47.627793 | -122.298941 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 129.0 | 2 | moderate | 0 | 0 | 2367298 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3587 | Capitol Hill | 47.630773 | -122.303323 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 7871885 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 3588 | Capitol Hill | 47.622061 | -122.298684 | Condominium | 3.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Stevens | Entire home/apt | 6 | 2.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 250.0 | 2 | strict | 0 | 0 | 7025898 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3589 | Capitol Hill | 47.629957 | -122.308610 | Apartment | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 220.0 | 5 | strict | 0 | 0 | 722537 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3590 | Capitol Hill | 47.618874 | -122.310021 | Bed & Breakfast | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Bre... | 162.0 | 1 | flexible | 0 | 0 | 9435279 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 3591 | Capitol Hill | 47.617526 | -122.306597 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 52.0 | 6 | flexible | 0 | 0 | 10135468 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3592 | Capitol Hill | 47.622977 | -122.301772 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 6 | 1.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 165.0 | 3 | strict | 0 | 0 | 2882641 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3593 | Capitol Hill | 47.625667 | -122.297598 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 88.0 | 2 | flexible | 0 | 0 | 7805332 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3594 | Capitol Hill | 47.623242 | -122.303042 | Apartment | 1.0 | Pull-out Sofa | 0 | 0.0 | 0.0 | 0 | Stevens | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 7584142 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3595 | Capitol Hill | 47.626363 | -122.309927 | House | 5.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Stevens | Entire home/apt | 9 | 4.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 4 | moderate | 0 | 0 | 1307898 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3596 | Capitol Hill | 47.619546 | -122.308522 | Bed & Breakfast | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Bre... | 152.0 | 1 | flexible | 0 | 0 | 9435483 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 |
| 3597 | Capitol Hill | 47.619015 | -122.309338 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 1 | 3.0 | 1.0 | "Wireless Internet",Heating,Essentials,Shampoo | 105.0 | 2 | moderate | 0 | 0 | 3446274 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 3598 | Capitol Hill | 47.638787 | -122.313343 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 8 | 2.0 | 3.0 | Internet,"Wireless Internet","Wheelchair Acces... | 295.0 | 6 | strict | 0 | 0 | 3041619 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3599 | Capitol Hill | 47.619459 | -122.311652 | Apartment | 1.0 | Real Bed | within a day | 55.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 1 | flexible | 0 | 0 | 10139271 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3600 | Capitol Hill | 47.621486 | -122.302713 | House | 1.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Heating,"Smoke Detector","... | 65.0 | 1 | moderate | 0 | 0 | 47196 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 |
| 3601 | Capitol Hill | 47.618276 | -122.308622 | House | 5.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 7 | 3.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 158.0 | 1 | strict | 0 | 0 | 8296857 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3602 | Capitol Hill | 47.618389 | -122.310000 | Bed & Breakfast | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Breakf... | 138.0 | 1 | flexible | 0 | 0 | 8845144 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 3603 | Capitol Hill | 47.623795 | -122.302117 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 3 | moderate | 0 | 0 | 5969069 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3604 | Capitol Hill | 47.620265 | -122.307771 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 125.0 | 1 | flexible | 0 | 0 | 9368677 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3605 | Capitol Hill | 47.617571 | -122.308996 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Pets liv... | 80.0 | 2 | moderate | 0 | 0 | 6837338 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3606 | Capitol Hill | 47.617749 | -122.312006 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Shared room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 100.0 | 1 | flexible | 0 | 0 | 6865696 | 0.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 |
| 3607 | Capitol Hill | 47.630878 | -122.303665 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 31.0 | 2 | strict | 0 | 0 | 6591894 | 9.571429 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3608 | Capitol Hill | 47.622072 | -122.303863 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 115.0 | 1 | strict | 0 | 0 | 3773784 | 8.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3609 | Capitol Hill | 47.624989 | -122.309943 | Other | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Private room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Washer,"Smoke Det... | 50.0 | 2 | flexible | 0 | 0 | 10318171 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 |
| 3610 | Capitol Hill | 47.630223 | -122.303250 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 29.0 | 2 | strict | 0 | 0 | 3666970 | 9.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3611 | Capitol Hill | 47.629510 | -122.303075 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 29.0 | 2 | strict | 0 | 0 | 3994634 | 9.142857 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3612 | Capitol Hill | 47.617729 | -122.311403 | Townhouse | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 2.5 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 120.0 | 1 | strict | 0 | 0 | 8090541 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3613 | Capitol Hill | 47.617911 | -122.311261 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Washer,Dryer,"Smoke Detect... | 135.0 | 2 | flexible | 0 | 0 | 7222136 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
| 3614 | Capitol Hill | 47.623875 | -122.301335 | House | 3.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.5 | 2.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 125.0 | 7 | strict | 1 | 1 | 299817 | 7.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3615 | Capitol Hill | 47.624046 | -122.301890 | House | 1.0 | Real Bed | within a few hours | 88.0 | 100.0 | 0 | Stevens | Private room | 2 | 2.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Pets l... | 80.0 | 2 | flexible | 0 | 0 | 5927083 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3616 | Capitol Hill | 47.614730 | -122.312399 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 125.0 | 2 | strict | 0 | 0 | 6066185 | 8.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3617 | Capitol Hill | 47.616868 | -122.310745 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 97.0 | 2 | strict | 0 | 0 | 5685908 | 9.285714 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3618 | Capitol Hill | 47.633892 | -122.304288 | House | 4.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 7 | 2.5 | 4.0 | TV,Internet,"Wireless Internet","Air Condition... | 449.0 | 4 | flexible | 0 | 0 | 9023202 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3619 | Capitol Hill | 47.621245 | -122.302201 | House | 3.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 6 | 2.5 | 2.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 300.0 | 3 | strict | 0 | 1 | 707424 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3620 | Capitol Hill | 47.618001 | -122.308072 | Bed & Breakfast | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 2.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 155.0 | 3 | moderate | 0 | 0 | 7151093 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3621 | Capitol Hill | 47.617220 | -122.309992 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 95.0 | 2 | flexible | 0 | 0 | 8924032 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3622 | Capitol Hill | 47.622426 | -122.298339 | Apartment | 3.0 | Real Bed | within a day | 70.0 | 0.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 135.0 | 2 | strict | 1 | 1 | 1002835 | 8.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3623 | Capitol Hill | 47.630890 | -122.303600 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 30.0 | 2 | strict | 0 | 0 | 8670484 | 10.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3624 | Capitol Hill | 47.617822 | -122.311247 | Apartment | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 92.0 | 1 | moderate | 0 | 0 | 9727246 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3625 | Capitol Hill | 47.623488 | -122.311424 | House | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 1 | Stevens | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 80.0 | 3 | moderate | 0 | 0 | 2526405 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3626 | Capitol Hill | 47.630407 | -122.301490 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 3.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 30.0 | 2 | strict | 0 | 0 | 4710869 | 10.000000 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3627 | Capitol Hill | 47.624661 | -122.308100 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet","Wheelchair Acces... | 90.0 | 2 | moderate | 0 | 0 | 3504521 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3628 | Capitol Hill | 47.621456 | -122.299899 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Stevens | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 65.0 | 3 | moderate | 0 | 0 | 6637899 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3629 | Capitol Hill | 47.630330 | -122.301708 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Shared room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 31.0 | 2 | strict | 0 | 0 | 3811872 | 8.428571 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3630 | Capitol Hill | 47.636031 | -122.313242 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | "Cable TV","Wireless Internet",Kitchen,Heating... | 139.0 | 2 | moderate | 0 | 0 | 3720731 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3631 | Capitol Hill | 47.623072 | -122.311685 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 135.0 | 5 | flexible | 0 | 0 | 3926008 | 9.285714 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3632 | Capitol Hill | 47.624017 | -122.307947 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 83.0 | 2 | flexible | 0 | 0 | 9863565 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3633 | Capitol Hill | 47.622100 | -122.301350 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 85.0 | 2 | flexible | 0 | 0 | 7824426 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3634 | Capitol Hill | 47.622516 | -122.311943 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Buzzer/W... | 195.0 | 2 | strict | 0 | 0 | 2778101 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3635 | Capitol Hill | 47.617421 | -122.308066 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Stevens | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,Kitchen,"Free Parking on Premises"... | 125.0 | 2 | strict | 0 | 0 | 10019082 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3636 | Capitol Hill | 47.621119 | -122.299738 | Townhouse | 6.0 | Real Bed | within an hour | 96.0 | 100.0 | 1 | Stevens | Entire home/apt | 9 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 450.0 | 2 | strict | 0 | 0 | 6586979 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3637 | Capitol Hill | 47.628173 | -122.307863 | House | 6.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 9 | 1.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 3 | flexible | 0 | 0 | 9618016 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3638 | Capitol Hill | 47.623167 | -122.301678 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Stevens | Entire home/apt | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 98.0 | 2 | moderate | 0 | 0 | 442487 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3639 | Other neighborhoods | 47.714588 | -122.365089 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadview | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 45.0 | 2 | strict | 0 | 0 | 8457402 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3640 | Other neighborhoods | 47.709425 | -122.363233 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadview | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 125.0 | 1 | strict | 0 | 0 | 2297917 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3641 | Other neighborhoods | 47.729905 | -122.357210 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Broadview | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | flexible | 0 | 0 | 1920477 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3642 | Other neighborhoods | 47.733316 | -122.360560 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadview | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 99.0 | 2 | moderate | 0 | 0 | 7860837 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3643 | Other neighborhoods | 47.717303 | -122.365092 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Broadview | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 49.0 | 1 | strict | 0 | 0 | 5304739 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3644 | Other neighborhoods | 47.715759 | -122.366497 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Broadview | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 67.0 | 2 | strict | 0 | 0 | 8051134 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3645 | Other neighborhoods | 47.721010 | -122.366449 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadview | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 105.0 | 1 | strict | 0 | 0 | 1557314 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3646 | Other neighborhoods | 47.713518 | -122.358735 | House | 4.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Broadview | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 195.0 | 7 | moderate | 0 | 0 | 451012 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3647 | Other neighborhoods | 47.710735 | -122.356575 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadview | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 125.0 | 2 | moderate | 0 | 0 | 6797786 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3648 | Other neighborhoods | 47.730826 | -122.355588 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Broadview | Private room | 2 | 1.0 | 1.0 | Kitchen,"Free Parking on Premises","Indoor Fir... | 65.0 | 1 | moderate | 0 | 0 | 2474569 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3649 | Other neighborhoods | 47.722727 | -122.356684 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadview | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 125.0 | 2 | strict | 0 | 0 | 689309 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 |
| 3650 | Other neighborhoods | 47.710035 | -122.358820 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadview | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 183.0 | 2 | flexible | 0 | 0 | 5059981 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3651 | Other neighborhoods | 47.706443 | -122.359972 | House | 1.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Broadview | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 39.0 | 1 | strict | 0 | 0 | 3986793 | 9.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3652 | Other neighborhoods | 47.714033 | -122.355968 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadview | Private room | 4 | 2.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Breakfa... | 68.0 | 3 | moderate | 0 | 0 | 1594313 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3653 | Other neighborhoods | 47.716429 | -122.372044 | House | 4.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Broadview | Entire home/apt | 6 | 1.0 | 0.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 120.0 | 2 | moderate | 0 | 0 | 4936647 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3654 | Other neighborhoods | 47.714797 | -122.355875 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Broadview | Private room | 2 | 2.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,Breakfa... | 86.0 | 3 | moderate | 0 | 0 | 1594219 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3655 | Other neighborhoods | 47.715396 | -122.359722 | House | 1.0 | Real Bed | within a day | 90.0 | 100.0 | 0 | Broadview | Private room | 1 | 2.0 | 1.0 | "Wireless Internet",Kitchen,"Pets live on this... | 39.0 | 1 | flexible | 0 | 0 | 8799588 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3656 | Other neighborhoods | 47.653434 | -122.351843 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 200.0 | 1 | strict | 0 | 0 | 7662775 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3657 | Other neighborhoods | 47.654298 | -122.352589 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 84.0 | 2 | moderate | 0 | 1 | 490076 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3658 | Other neighborhoods | 47.653968 | -122.350923 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,E... | 150.0 | 2 | moderate | 0 | 0 | 9217030 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3659 | Other neighborhoods | 47.653632 | -122.343583 | Camper/RV | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet","Air Conditioning",Kitchen... | 82.0 | 2 | strict | 0 | 0 | 7756839 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3660 | Other neighborhoods | 47.654371 | -122.357454 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 140.0 | 3 | moderate | 1 | 1 | 116221 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3661 | Other neighborhoods | 47.655498 | -122.359283 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 99.0 | 3 | moderate | 1 | 1 | 6921373 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3662 | Other neighborhoods | 47.657996 | -122.350506 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen | 149.0 | 2 | flexible | 0 | 0 | 7743727 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
| 3663 | Other neighborhoods | 47.655872 | -122.356884 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 2 | 3.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 75.0 | 3 | flexible | 0 | 0 | 649243 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3664 | Other neighborhoods | 47.661252 | -122.351037 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 125.0 | 2 | strict | 0 | 0 | 2989758 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3665 | Other neighborhoods | 47.657016 | -122.359940 | Apartment | 1.0 | Real Bed | within a day | 60.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 138.0 | 2 | flexible | 0 | 0 | 4518474 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3666 | Other neighborhoods | 47.660814 | -122.347274 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 65.0 | 2 | moderate | 0 | 0 | 1796302 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3667 | Other neighborhoods | 47.660328 | -122.352226 | House | 3.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 3.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 7 | moderate | 0 | 1 | 53803 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3668 | Other neighborhoods | 47.654886 | -122.345403 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Pets live on t... | 200.0 | 1 | flexible | 0 | 0 | 6867053 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3669 | Other neighborhoods | 47.656243 | -122.343393 | House | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 5 | 1.0 | 2.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 100.0 | 1 | flexible | 0 | 0 | 9693230 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3670 | Other neighborhoods | 47.658957 | -122.356742 | House | 2.0 | Real Bed | 0 | 0.0 | 100.0 | 0 | Fremont | Entire home/apt | 5 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 180.0 | 2 | flexible | 0 | 0 | 6750264 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3671 | Other neighborhoods | 47.653715 | -122.347423 | Apartment | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Wheelchair Ac... | 136.0 | 1 | flexible | 0 | 0 | 6392029 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3672 | Other neighborhoods | 47.653236 | -122.350744 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,"Family/Ki... | 129.0 | 3 | moderate | 0 | 0 | 2731253 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 |
| 3673 | Other neighborhoods | 47.658760 | -122.356499 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Fremont | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 61.0 | 1 | flexible | 0 | 0 | 5625964 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 3674 | Other neighborhoods | 47.653028 | -122.342683 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 275.0 | 1 | strict | 0 | 0 | 38545 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3675 | Other neighborhoods | 47.651912 | -122.349611 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 100.0 | 1 | flexible | 0 | 0 | 8699046 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 |
| 3676 | Other neighborhoods | 47.655556 | -122.359135 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 4 | 1.0 | 1.0 | "Wireless Internet",Heating,"Family/Kid Friend... | 59.0 | 2 | moderate | 0 | 0 | 9174327 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 3677 | Other neighborhoods | 47.652199 | -122.347521 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 95.0 | 1 | flexible | 0 | 0 | 6169489 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3678 | Other neighborhoods | 47.652568 | -122.351361 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 5 | 2.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 500.0 | 1 | strict | 0 | 0 | 9511777 | 9.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3679 | Other neighborhoods | 47.657175 | -122.345108 | House | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 200.0 | 1 | strict | 0 | 0 | 3489837 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3680 | Other neighborhoods | 47.650928 | -122.346250 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 95.0 | 1 | moderate | 0 | 0 | 5905958 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3681 | Other neighborhoods | 47.655571 | -122.344889 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 99.0 | 1 | moderate | 0 | 0 | 3768742 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3682 | Other neighborhoods | 47.659574 | -122.344494 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 1 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Essentials | 55.0 | 1 | flexible | 1 | 1 | 1593939 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3683 | Other neighborhoods | 47.655902 | -122.361016 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 105.0 | 2 | moderate | 0 | 0 | 6087451 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3684 | Other neighborhoods | 47.664407 | -122.352599 | Townhouse | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 1 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Heating,"Smoke De... | 75.0 | 3 | moderate | 0 | 0 | 6179956 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3685 | Other neighborhoods | 47.651868 | -122.348863 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 70.0 | 1 | flexible | 0 | 0 | 10060674 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3686 | Other neighborhoods | 47.654605 | -122.347063 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 1 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Buzzer... | 35.0 | 1 | flexible | 0 | 0 | 9822848 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 |
| 3687 | Other neighborhoods | 47.653968 | -122.345080 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Gym,"P... | 52.0 | 1 | strict | 0 | 0 | 2391699 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3688 | Other neighborhoods | 47.662097 | -122.349513 | House | 1.0 | Real Bed | within a few hours | 93.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 57.0 | 1 | moderate | 0 | 0 | 1118153 | 9.428571 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3689 | Other neighborhoods | 47.654452 | -122.354403 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 54.0 | 2 | moderate | 0 | 1 | 1100686 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3690 | Other neighborhoods | 47.655397 | -122.343237 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 35.0 | 1 | flexible | 0 | 0 | 9925458 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3691 | Other neighborhoods | 47.654871 | -122.353256 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 3 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 50.0 | 3 | moderate | 0 | 1 | 1146966 | 9.571429 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3692 | Other neighborhoods | 47.648404 | -122.344877 | Townhouse | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Pets live on thi... | 67.0 | 1 | moderate | 0 | 0 | 2525172 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 |
| 3693 | Other neighborhoods | 47.649234 | -122.346060 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Elevator in Build... | 43.0 | 1 | strict | 1 | 1 | 8463726 | 8.714286 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3694 | Other neighborhoods | 47.660361 | -122.352688 | Townhouse | 1.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Fremont | Private room | 1 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 97.0 | 1 | moderate | 0 | 1 | 51826 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3695 | Other neighborhoods | 47.653605 | -122.358203 | Apartment | 1.0 | Pull-out Sofa | within a day | 100.0 | 100.0 | 0 | Fremont | Shared room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 55.0 | 1 | flexible | 0 | 0 | 7805491 | 9.857143 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3696 | Other neighborhoods | 47.659287 | -122.347160 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Air Condition... | 69.0 | 1 | flexible | 0 | 0 | 7701014 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3697 | Other neighborhoods | 47.655550 | -122.355448 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Free Parking on ... | 99.0 | 1 | moderate | 0 | 0 | 1279660 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
| 3698 | Other neighborhoods | 47.654218 | -122.347217 | Apartment | 4.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 2 | strict | 0 | 0 | 5252877 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3699 | Other neighborhoods | 47.662936 | -122.357642 | Apartment | 3.0 | Real Bed | within a few hours | 86.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 97.0 | 2 | moderate | 0 | 0 | 935845 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
| 3700 | Other neighborhoods | 47.662831 | -122.349005 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 45.0 | 1 | flexible | 0 | 0 | 3844087 | 9.571429 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3701 | Other neighborhoods | 47.657471 | -122.356488 | House | 4.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 8 | 3.0 | 4.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 1 | flexible | 0 | 0 | 6923948 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3702 | Other neighborhoods | 47.657600 | -122.346496 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Fremont | Private room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 49.0 | 1 | moderate | 0 | 0 | 7178239 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3703 | Other neighborhoods | 47.656680 | -122.347400 | House | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 68.0 | 1 | moderate | 0 | 0 | 2075094 | 9.285714 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3704 | Other neighborhoods | 47.656570 | -122.349427 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 75.0 | 1 | flexible | 0 | 0 | 5892185 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3705 | Other neighborhoods | 47.656113 | -122.353346 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 4 | 1.0 | 1.0 | TV,"Wireless Internet","Free Parking on Premis... | 120.0 | 1 | flexible | 0 | 0 | 7596455 | 9.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 |
| 3706 | Other neighborhoods | 47.653715 | -122.351808 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 195.0 | 1 | strict | 0 | 0 | 9513636 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3707 | Other neighborhoods | 47.655195 | -122.352818 | Apartment | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 5 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Indoo... | 125.0 | 2 | moderate | 0 | 0 | 5992032 | 9.142857 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3708 | Other neighborhoods | 47.660853 | -122.349938 | House | 6.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 12 | 3.0 | 4.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 300.0 | 1 | moderate | 0 | 0 | 3534444 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3709 | Other neighborhoods | 47.654535 | -122.345272 | Apartment | 3.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 200.0 | 5 | strict | 0 | 0 | 8080939 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3710 | Other neighborhoods | 47.652017 | -122.345921 | Apartment | 1.0 | Real Bed | within an hour | 89.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | strict | 0 | 0 | 5525073 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3711 | Other neighborhoods | 47.655412 | -122.344310 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 185.0 | 2 | strict | 0 | 0 | 5402304 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3712 | Other neighborhoods | 47.660020 | -122.345458 | Apartment | 6.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 149.0 | 2 | strict | 0 | 0 | 6288141 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3713 | Other neighborhoods | 47.659469 | -122.352126 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 52.0 | 1 | flexible | 0 | 0 | 1781723 | 9.714286 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3714 | Other neighborhoods | 47.655547 | -122.360559 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 75.0 | 1 | flexible | 0 | 0 | 2061463 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3715 | Other neighborhoods | 47.659763 | -122.346406 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet","Free Parking ... | 70.0 | 2 | moderate | 0 | 0 | 4871348 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 |
| 3716 | Other neighborhoods | 47.654440 | -122.351988 | Apartment | 3.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 125.0 | 2 | moderate | 0 | 0 | 7616031 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3717 | Other neighborhoods | 47.660419 | -122.351849 | Loft | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 125.0 | 1 | flexible | 0 | 0 | 7761509 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3718 | Other neighborhoods | 47.658873 | -122.350835 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 99.0 | 3 | moderate | 0 | 0 | 6516775 | 9.428571 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3719 | Other neighborhoods | 47.654731 | -122.348828 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 100.0 | 1 | flexible | 0 | 0 | 5848330 | 9.714286 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3720 | Other neighborhoods | 47.655974 | -122.343187 | Apartment | 2.0 | Real Bed | within a few hours | 78.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Wheelchair Acces... | 75.0 | 1 | flexible | 0 | 0 | 9189391 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3721 | Other neighborhoods | 47.653819 | -122.351292 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 60.0 | 1 | flexible | 0 | 0 | 9533803 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3722 | Other neighborhoods | 47.659118 | -122.345117 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 2.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | moderate | 0 | 0 | 5902452 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3723 | Other neighborhoods | 47.656925 | -122.360935 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 275.0 | 2 | strict | 0 | 0 | 219532 | 9.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3724 | Other neighborhoods | 47.650277 | -122.345380 | Apartment | 1.0 | Real Bed | within a day | 50.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 232.0 | 1 | moderate | 0 | 0 | 7217102 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3725 | Other neighborhoods | 47.658982 | -122.352276 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 95.0 | 3 | strict | 0 | 0 | 2727808 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3726 | Other neighborhoods | 47.654873 | -122.350535 | House | 4.0 | Real Bed | within a few hours | 75.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.5 | 3.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 200.0 | 1 | moderate | 0 | 0 | 7151417 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3727 | Other neighborhoods | 47.660695 | -122.349925 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 50.0 | 2 | strict | 0 | 0 | 7069143 | 9.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3728 | Other neighborhoods | 47.652016 | -122.351896 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 85.0 | 1 | moderate | 0 | 0 | 8683011 | 9.857143 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3729 | Other neighborhoods | 47.650586 | -122.348830 | Apartment | 1.0 | Real Bed | a few days or more | 33.0 | 0.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,W... | 90.0 | 1 | flexible | 0 | 0 | 4357979 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3730 | Other neighborhoods | 47.659116 | -122.342658 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 120.0 | 1 | moderate | 0 | 0 | 8118110 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3731 | Other neighborhoods | 47.652548 | -122.352931 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 89.0 | 2 | flexible | 0 | 0 | 5766989 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3732 | Other neighborhoods | 47.658653 | -122.360815 | House | 1.0 | Pull-out Sofa | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 65.0 | 1 | strict | 0 | 0 | 8306501 | 9.571429 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3733 | Other neighborhoods | 47.651640 | -122.352724 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 125.0 | 2 | moderate | 0 | 0 | 4349344 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3734 | Other neighborhoods | 47.651936 | -122.342859 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Eleva... | 67.0 | 1 | moderate | 0 | 0 | 8633733 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3735 | Other neighborhoods | 47.660376 | -122.344852 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 100.0 | 2 | flexible | 0 | 0 | 7396707 | 9.428571 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3736 | Other neighborhoods | 47.658107 | -122.357389 | House | 2.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 2.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 1 | moderate | 0 | 0 | 394408 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3737 | Other neighborhoods | 47.653057 | -122.350329 | Apartment | 2.0 | Real Bed | within an hour | 90.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 115.0 | 2 | moderate | 0 | 0 | 8412143 | 9.714286 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3738 | Other neighborhoods | 47.650273 | -122.344068 | House | 3.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 210.0 | 3 | strict | 1 | 1 | 5728739 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3739 | Other neighborhoods | 47.653620 | -122.356896 | House | 1.0 | Real Bed | within an hour | 93.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 195.0 | 1 | strict | 0 | 0 | 3931571 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3740 | Other neighborhoods | 47.660743 | -122.356384 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fremont | Private room | 1 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 59.0 | 2 | flexible | 0 | 0 | 3899160 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 |
| 3741 | Other neighborhoods | 47.655214 | -122.358474 | Condominium | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 112.0 | 1 | moderate | 0 | 0 | 8428825 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3742 | Other neighborhoods | 47.654074 | -122.358281 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 110.0 | 3 | moderate | 1 | 1 | 3554558 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3743 | Other neighborhoods | 47.661004 | -122.363054 | Apartment | 1.0 | Futon | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | "Wireless Internet","Free Parking on Premises"... | 100.0 | 1 | flexible | 0 | 0 | 3931346 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
| 3744 | Other neighborhoods | 47.656862 | -122.347901 | House | 4.0 | Real Bed | within a day | 88.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.5 | 3.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 235.0 | 3 | strict | 1 | 1 | 4250749 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3745 | Other neighborhoods | 47.652948 | -122.346995 | Apartment | 2.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet","Air Conditi... | 99.0 | 2 | strict | 0 | 0 | 6290509 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 |
| 3746 | Other neighborhoods | 47.655466 | -122.361421 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 115.0 | 1 | flexible | 0 | 0 | 2693700 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
| 3747 | Other neighborhoods | 47.657675 | -122.358685 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 400.0 | 3 | strict | 0 | 0 | 7857241 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3748 | Other neighborhoods | 47.661280 | -122.343220 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 1 | 1.0 | 1.0 | "Cable TV",Internet,"Wireless Internet",Kitche... | 62.0 | 7 | flexible | 0 | 0 | 8009814 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3749 | Other neighborhoods | 47.653214 | -122.348586 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,"Free Parking on P... | 135.0 | 2 | flexible | 0 | 0 | 3963320 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3750 | Other neighborhoods | 47.660260 | -122.344809 | Apartment | 4.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 119.0 | 2 | strict | 0 | 0 | 6289789 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3751 | Other neighborhoods | 47.658733 | -122.343442 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | flexible | 0 | 0 | 1513847 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3752 | Other neighborhoods | 47.652594 | -122.354218 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 160.0 | 2 | strict | 0 | 0 | 6183721 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3753 | Other neighborhoods | 47.652652 | -122.347383 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 400.0 | 29 | strict | 0 | 0 | 5061411 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3754 | Other neighborhoods | 47.656303 | -122.356368 | House | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 225.0 | 5 | strict | 0 | 0 | 3594959 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3755 | Other neighborhoods | 47.651609 | -122.356066 | House | 7.0 | Real Bed | within a day | 75.0 | 100.0 | 0 | Fremont | Entire home/apt | 7 | 1.0 | 3.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 240.0 | 3 | moderate | 0 | 0 | 637710 | 8.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 |
| 3756 | Other neighborhoods | 47.659627 | -122.350847 | House | 1.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Fremont | Private room | 1 | 1.5 | 1.0 | "Wireless Internet",Kitchen,"Indoor Fireplace"... | 50.0 | 1 | flexible | 0 | 0 | 8968494 | 10.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
| 3757 | Other neighborhoods | 47.662958 | -122.348666 | House | 2.0 | Real Bed | within a day | 67.0 | 0.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 165.0 | 2 | strict | 0 | 0 | 1702092 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3758 | Other neighborhoods | 47.664626 | -122.359772 | House | 4.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 350.0 | 2 | moderate | 0 | 0 | 5781547 | 9.571429 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3759 | Other neighborhoods | 47.659660 | -122.349443 | Townhouse | 2.0 | Real Bed | within a day | 80.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.5 | 2.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 150.0 | 2 | flexible | 0 | 0 | 7821351 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3760 | Other neighborhoods | 47.650563 | -122.344063 | Townhouse | 3.0 | Real Bed | within a few hours | 100.0 | 0.0 | 0 | Fremont | Entire home/apt | 4 | 2.5 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 150.0 | 1 | flexible | 0 | 0 | 6937071 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3761 | Other neighborhoods | 47.657325 | -122.357002 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 85.0 | 4 | strict | 0 | 0 | 3258386 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3762 | Other neighborhoods | 47.654910 | -122.345452 | Apartment | 3.0 | Real Bed | within a few hours | 90.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 2 | strict | 0 | 0 | 6592421 | 8.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3763 | Other neighborhoods | 47.652114 | -122.345674 | Loft | 5.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 5 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 79.0 | 2 | strict | 0 | 0 | 3143175 | 9.428571 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3764 | Other neighborhoods | 47.663927 | -122.354786 | Townhouse | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 76.0 | 1 | strict | 0 | 0 | 4322622 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 |
| 3765 | Other neighborhoods | 47.659870 | -122.359464 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 78.0 | 1 | flexible | 0 | 0 | 9262389 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3766 | Other neighborhoods | 47.657739 | -122.349918 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Famil... | 50.0 | 1 | flexible | 0 | 0 | 6043482 | 0.000000 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3767 | Other neighborhoods | 47.655278 | -122.347262 | Apartment | 2.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Cable TV","Wireless Internet","Pets Allowe... | 135.0 | 4 | strict | 0 | 0 | 8632651 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
| 3768 | Other neighborhoods | 47.657296 | -122.350925 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 105.0 | 2 | moderate | 0 | 0 | 6107901 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3769 | Other neighborhoods | 47.653397 | -122.353524 | Apartment | 1.0 | Real Bed | within a few hours | 67.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 99.0 | 1 | strict | 0 | 0 | 4993710 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3770 | Other neighborhoods | 47.660113 | -122.351646 | Apartment | 1.0 | Couch | within a day | 100.0 | 0.0 | 0 | Fremont | Shared room | 1 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 1 | flexible | 0 | 0 | 7853498 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3771 | Other neighborhoods | 47.658831 | -122.347967 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 8 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 325.0 | 1 | strict | 0 | 0 | 430609 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3772 | Other neighborhoods | 47.661194 | -122.361243 | House | 5.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 3.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 99.0 | 1 | strict | 0 | 0 | 7646637 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3773 | Other neighborhoods | 47.659441 | -122.359774 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 149.0 | 1 | strict | 0 | 0 | 1069562 | 9.714286 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 |
| 3774 | Other neighborhoods | 47.651989 | -122.350265 | Cabin | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fremont | Private room | 3 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 79.0 | 3 | moderate | 0 | 0 | 119103 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
| 3775 | Other neighborhoods | 47.653521 | -122.350634 | Apartment | 1.0 | Futon | within a few hours | 80.0 | 100.0 | 0 | Fremont | Shared room | 1 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Elevator... | 40.0 | 1 | flexible | 0 | 0 | 8687967 | 9.857143 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 |
| 3776 | Other neighborhoods | 47.657589 | -122.354376 | Apartment | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 115.0 | 5 | moderate | 1 | 1 | 282934 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3777 | Other neighborhoods | 47.654958 | -122.353362 | Other | 2.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Wh... | 120.0 | 2 | moderate | 0 | 0 | 5787922 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 |
| 3778 | Other neighborhoods | 47.654620 | -122.348075 | Apartment | 3.0 | Real Bed | within an hour | 92.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 150.0 | 5 | strict | 0 | 0 | 8081658 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3779 | Other neighborhoods | 47.658926 | -122.345952 | House | 1.0 | Real Bed | within a few hours | 90.0 | 100.0 | 1 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 68.0 | 1 | moderate | 0 | 0 | 3898413 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3780 | Other neighborhoods | 47.656946 | -122.345977 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 2 | 2.0 | 1.0 | "Cable TV","Wireless Internet","Air Conditioni... | 125.0 | 1 | moderate | 0 | 0 | 7009282 | 0.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3781 | Other neighborhoods | 47.650057 | -122.345836 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet","Air Conditioning... | 55.0 | 3 | strict | 1 | 1 | 9196007 | 0.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 3782 | Other neighborhoods | 47.660884 | -122.354345 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 99.0 | 3 | moderate | 0 | 0 | 4100009 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3783 | Other neighborhoods | 47.655846 | -122.356491 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 90.0 | 2 | moderate | 0 | 0 | 4738971 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3784 | Other neighborhoods | 47.660342 | -122.364747 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 110.0 | 1 | flexible | 0 | 0 | 692671 | 9.857143 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3785 | Other neighborhoods | 47.653176 | -122.346211 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 80.0 | 2 | flexible | 0 | 0 | 5893969 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3786 | Other neighborhoods | 47.661396 | -122.352256 | Townhouse | 1.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Fremont | Private room | 1 | 1.5 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 87.0 | 1 | moderate | 0 | 1 | 215954 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3787 | Other neighborhoods | 47.658552 | -122.348265 | House | 4.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.5 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 260.0 | 3 | strict | 0 | 0 | 2494157 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3788 | Other neighborhoods | 47.656739 | -122.344865 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 115.0 | 1 | strict | 0 | 0 | 7745196 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3789 | Other neighborhoods | 47.661171 | -122.349923 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 60.0 | 1 | flexible | 0 | 0 | 4645405 | 9.142857 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3790 | Other neighborhoods | 47.649271 | -122.347817 | Apartment | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet",Kitchen,"Pets ... | 175.0 | 2 | strict | 0 | 0 | 2755730 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3791 | Other neighborhoods | 47.659149 | -122.363466 | House | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Fr... | 85.0 | 2 | moderate | 0 | 0 | 7949448 | 10.000000 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 |
| 3792 | Other neighborhoods | 47.663040 | -122.348499 | Apartment | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 109.0 | 2 | flexible | 0 | 0 | 9288840 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 |
| 3793 | Other neighborhoods | 47.660056 | -122.357683 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 109.0 | 2 | strict | 0 | 0 | 3312406 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3794 | Other neighborhoods | 47.654199 | -122.359987 | Apartment | 1.0 | Real Bed | within a few hours | 80.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | "Wireless Internet",Kitchen,Heating,"Smoke Det... | 107.0 | 2 | flexible | 0 | 0 | 6621924 | 9.142857 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3795 | Other neighborhoods | 47.650124 | -122.343283 | Loft | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 200.0 | 2 | flexible | 0 | 0 | 5673552 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3796 | Other neighborhoods | 47.656508 | -122.360571 | Cabin | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV","Wireless Internet",Kitchen,"Fre... | 85.0 | 2 | moderate | 0 | 0 | 609701 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 |
| 3797 | Other neighborhoods | 47.658976 | -122.354915 | House | 1.0 | Futon | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | "Wireless Internet",Kitchen,Heating,Washer,Dry... | 70.0 | 3 | strict | 0 | 0 | 10118341 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 |
| 3798 | Other neighborhoods | 47.655381 | -122.343205 | House | 1.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 77.0 | 2 | strict | 0 | 0 | 2614387 | 10.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3799 | Other neighborhoods | 47.652902 | -122.352110 | Townhouse | 1.0 | Real Bed | a few days or more | 25.0 | 100.0 | 0 | Fremont | Private room | 2 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 65.0 | 2 | moderate | 0 | 0 | 7735100 | 9.714286 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3800 | Other neighborhoods | 47.663613 | -122.349519 | Bed & Breakfast | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Private room | 2 | 1.5 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 185.0 | 1 | strict | 0 | 0 | 5482204 | 0.000000 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| 3801 | Other neighborhoods | 47.657078 | -122.358795 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 108.0 | 4 | moderate | 0 | 0 | 4524575 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3802 | Other neighborhoods | 47.650765 | -122.347787 | House | 2.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | TV,"Wireless Internet",Kitchen,"Pets Allowed",... | 200.0 | 2 | flexible | 0 | 0 | 8562314 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 |
| 3803 | Other neighborhoods | 47.661131 | -122.349238 | House | 10.0 | Real Bed | within a few hours | 97.0 | 100.0 | 0 | Fremont | Entire home/apt | 16 | 3.5 | 4.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 250.0 | 1 | moderate | 0 | 0 | 9698202 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 3804 | Other neighborhoods | 47.660856 | -122.352401 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | TV,Internet,"Wireless Internet",Kitchen,Heatin... | 125.0 | 2 | strict | 0 | 0 | 7178490 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 3805 | Other neighborhoods | 47.653158 | -122.356285 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 1.0 | 2.0 | TV,Internet,"Wireless Internet","Air Condition... | 100.0 | 2 | strict | 0 | 0 | 8054902 | 10.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 3806 | Other neighborhoods | 47.656057 | -122.354514 | House | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 2.0 | Internet,"Wireless Internet",Kitchen,Heating,"... | 160.0 | 1 | flexible | 0 | 0 | 5458027 | 10.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 |
| 3807 | Other neighborhoods | 47.654304 | -122.342720 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 109.0 | 1 | strict | 0 | 0 | 4940491 | 9.857143 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3808 | Other neighborhoods | 47.662036 | -122.350485 | House | 3.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 175.0 | 3 | strict | 0 | 0 | 1844791 | 9.571429 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3809 | Other neighborhoods | 47.648689 | -122.343915 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | "Wheelchair Accessible",Kitchen,Heating,"Famil... | 120.0 | 4 | strict | 0 | 0 | 6120046 | 8.142857 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| 3810 | Other neighborhoods | 47.654205 | -122.352604 | House | 3.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 5 | 1.0 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 154.0 | 2 | strict | 0 | 0 | 262764 | 9.000000 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
| 3811 | Other neighborhoods | 47.657898 | -122.346692 | Apartment | 1.0 | Real Bed | within a few hours | 100.0 | 100.0 | 0 | Fremont | Entire home/apt | 3 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 65.0 | 1 | moderate | 0 | 0 | 8578490 | 9.285714 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3812 | Other neighborhoods | 47.654516 | -122.358124 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 1 | Fremont | Entire home/apt | 4 | 1.0 | 1.0 | Internet,"Wireless Internet",Kitchen,"Free Par... | 95.0 | 3 | moderate | 1 | 1 | 3383329 | 9.857143 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 |
| 3813 | Other neighborhoods | 47.664295 | -122.359170 | House | 3.0 | Real Bed | within a few hours | 99.0 | 100.0 | 0 | Fremont | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 359.0 | 3 | strict | 0 | 0 | 8101950 | 8.285714 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3814 | Capitol Hill | 47.649552 | -122.318309 | Apartment | 2.0 | Real Bed | within an hour | 100.0 | 100.0 | 0 | Portage Bay | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 79.0 | 2 | moderate | 0 | 0 | 8902327 | 10.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 |
| 3815 | Rainier Valley | 47.508453 | -122.240607 | House | 1.0 | Real Bed | 0 | 0.0 | 0.0 | 0 | Rainier Beach | Entire home/apt | 2 | 1.0 | 1.0 | "Cable TV","Wireless Internet",Kitchen,"Free P... | 93.0 | 1 | moderate | 0 | 0 | 10267360 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 |
| 3816 | Capitol Hill | 47.632335 | -122.275530 | Condominium | 1.0 | Real Bed | within an hour | 100.0 | 0.0 | 0 | Madison Park | Entire home/apt | 2 | 1.0 | 0.0 | TV,"Wireless Internet",Kitchen,"Free Parking o... | 99.0 | 3 | moderate | 0 | 0 | 9604740 | 0.000000 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 3817 | Queen Anne | 47.641186 | -122.342085 | Apartment | 1.0 | Real Bed | within a day | 100.0 | 0.0 | 0 | East Queen Anne | Entire home/apt | 3 | 1.5 | 2.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 87.0 | 1 | flexible | 0 | 0 | 10208623 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
# Creating a month_year column from the date column
date_columns = ['date']
for c in date_columns:
calendar[c] = pd.to_datetime(calendar[c])
calendar[c] = calendar[c].dt.date
c_month = c+'month'
calendar[c_month] = calendar[c].apply(lambda x: dt.datetime.strftime(x, '%m-%Y'))
calendar[c_month] = pd.to_datetime(calendar[c_month])
calendar.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 1393570 entries, 0 to 1393569 Data columns (total 5 columns): listing_id 1393570 non-null int64 date 1393570 non-null object available 1393570 non-null object price 934542 non-null object datemonth 1393570 non-null datetime64[ns] dtypes: datetime64[ns](1), int64(1), object(3) memory usage: 53.2+ MB
calendar.head()
| listing_id | date | available | price | datemonth | |
|---|---|---|---|---|---|
| 0 | 241032 | 2016-01-04 | t | $85.00 | 2016-01-01 |
| 1 | 241032 | 2016-01-05 | t | $85.00 | 2016-01-01 |
| 2 | 241032 | 2016-01-06 | f | NaN | 2016-01-01 |
| 3 | 241032 | 2016-01-07 | f | NaN | 2016-01-01 |
| 4 | 241032 | 2016-01-08 | f | NaN | 2016-01-01 |
#Change price to number
calendar['price'] = calendar['price'].replace(np.nan, 0)
calendar['price'] = calendar['price'].replace('[\$,]', '', regex=True).astype(float)
calendar.head()
| listing_id | date | available | price | datemonth | |
|---|---|---|---|---|---|
| 0 | 241032 | 2016-01-04 | t | 85.0 | 2016-01-01 |
| 1 | 241032 | 2016-01-05 | t | 85.0 | 2016-01-01 |
| 2 | 241032 | 2016-01-06 | f | 0.0 | 2016-01-01 |
| 3 | 241032 | 2016-01-07 | f | 0.0 | 2016-01-01 |
| 4 | 241032 | 2016-01-08 | f | 0.0 | 2016-01-01 |
Let's revisit the question that I asked in the beginning and see if we can answer them now?
- Which is the most popular neighborhood in Seattle? and similarly which is the least popular area in Seattle? What can we tell by looking at their monthly pricing trends?
- How does price fluctuate over time? Is there any seasocanl effect over pricing?
- What are the main ameneties? There will be many in the catalog but we will try to find the main profiles
- What are the different features that decide the pricing?
- Can we classify the properties? It would be nice to see what features bring the properties together and what separates them
avg_score = listings6.groupby('neighbourhood_cleansed')['Overall_score'].mean().sort_values(ascending = False)
#avg_score
plt.figure(figsize=(18, 5));
#(listings6[['neighbourhood_cleansed','Overall_score']].groupby('neighbourhood_cleansed').sum()['Overall_score']/listings6.shape[0]).sort_values(ascending = True).plot.barh()
avg_score.plot(kind='bar', title='Average Total Review Score', color='tan', edgecolor='black')
plt.ylabel('Mean Score (out of 10)');
plt.title("Neighborhoods in Seattle")
Text(0.5,1,'Neighborhoods in Seattle')
So, as per the reviews, the most popular or in other words highly reviewed neighborhood is Riverview, Roxhill and Portage Bay. All of these 3 is scoring more than 9.5 out of 10.
Similarly, the least like neighborhoods are South Beacon Hill and South Park (both scoring less than 5)
Let's check the fluctuation in prices for the top and bottom most areas of Seattle
# Merging with cleaned listing dataset and calendar dataset
scores = listings6[['id','neighbourhood_cleansed','Overall_score']]
df_cal = calendar.copy()
df_cal = df_cal.rename(columns={'listing_id':'id'})
score_cal = scores.merge(df_cal, on='id', how='left')
score_cal.head()
| id | neighbourhood_cleansed | Overall_score | date | available | price | datemonth | |
|---|---|---|---|---|---|---|---|
| 0 | 241032 | West Queen Anne | 9.857143 | 2016-01-04 | t | 85.0 | 2016-01-01 |
| 1 | 241032 | West Queen Anne | 9.857143 | 2016-01-05 | t | 85.0 | 2016-01-01 |
| 2 | 241032 | West Queen Anne | 9.857143 | 2016-01-06 | f | 0.0 | 2016-01-01 |
| 3 | 241032 | West Queen Anne | 9.857143 | 2016-01-07 | f | 0.0 | 2016-01-01 |
| 4 | 241032 | West Queen Anne | 9.857143 | 2016-01-08 | f | 0.0 | 2016-01-01 |
# Riverview
Area = score_cal[score_cal['neighbourhood_cleansed'] == 'Riverview']
riv_Avg_price = Area.groupby('datemonth').mean().price
#Monthly price fluctuations of the most popularly reviewed area (Riverview)
plt.ylabel('Average Cost per month in $')
riv_Avg_price.plot(kind='bar', color='yellowgreen', title='Riverview Average Cost per month');
# Roxhill
Area = score_cal[score_cal['neighbourhood_cleansed'] == 'Roxhill']
rox_Avg_price = Area.groupby('datemonth').mean().price
#Monthly price fluctuations of the most popularly reviewed area (Riverview)
plt.ylabel('Average Cost per month in $')
rox_Avg_price.plot(kind='bar', color='yellowgreen', title='Roxhill Average Cost per month');
# Portage Bay
Area = score_cal[score_cal['neighbourhood_cleansed'] == 'Portage Bay']
port_Avg_price = Area.groupby('datemonth').mean().price
#Monthly price fluctuations of the most popularly reviewed area (Riverview)
plt.ylabel('Average Cost per month in $')
port_Avg_price.plot(kind='bar', color='yellowgreen', title='Portage Bay Average Cost per month');
# South Beacon Hill
Area = score_cal[score_cal['neighbourhood_cleansed'] == 'South Beacon Hill']
beac_Avg_price = Area.groupby('datemonth').mean().price
#Monthly price fluctuations of the most popularly reviewed area (Riverview)
plt.ylabel('Average Cost per month in $')
beac_Avg_price.plot(kind='bar', color='orangered', title='South Beacon Hill Average Cost per month');
# South Park
Area = score_cal[score_cal['neighbourhood_cleansed'] == 'South Park']
spark_Avg_price = Area.groupby('datemonth').mean().price
#Monthly price fluctuations of the most popularly reviewed area (Riverview)
plt.ylabel('Average Cost per month in $')
spark_Avg_price.plot(kind='bar', color='orangered', title='South Park Average Cost per month');
# Overall Seattle
All_Avg_price = score_cal.groupby('datemonth').mean().price
#Monthly price fluctuations of the most popularly reviewed area (Riverview)
plt.ylabel('Average Cost per month in $')
All_Avg_price.plot(kind='bar', color='navy', title='Seattle overall Average Cost per month');
#plotting on the same plot
plt.figure(figsize=(5, 10));
fig, ax = plt.subplots()
plt.title('Cost of Rent per Month')
plt.ylabel('Cost ($)')
plt.xlabel('Month')
ax.plot(riv_Avg_price, label='Riverview')
ax.plot(rox_Avg_price, label='Roxhill')
ax.plot(port_Avg_price, label='Portage Bay')
ax.plot(beac_Avg_price, label='South Beacon Hill')
ax.plot(spark_Avg_price, label='South Park')
ax.plot(All_Avg_price, label='Seattle')
plt.legend()
<matplotlib.legend.Legend at 0x2aa80ee2780>
<Figure size 360x720 with 0 Axes>
Let's check how many properties are there in each of the neighborhood
plt.figure(figsize=(18, 5));
(listings6[['neighbourhood_cleansed','price']].groupby('neighbourhood_cleansed').count()['price']/listings6.shape[0]).sort_values(ascending = False).plot.bar()
plt.title("# of listings in Seattle");
top_listings = (listings6[['neighbourhood_cleansed','price']].groupby('neighbourhood_cleansed').count()['price']/listings6.shape[0]).sort_values(ascending = False)
top_listings = pd.DataFrame(top_listings)
top_listings.reset_index(inplace=True)
top_listings.iloc[:5,0:].sum()
neighbourhood_cleansed BroadwayBelltownWallingfordFremontMinor price 0.285752 dtype: object
Top_5_area = list(top_listings.iloc[:5,0])
Top_5_area
['Broadway', 'Belltown', 'Wallingford', 'Fremont', 'Minor']
top_listings.iloc[:10,0:].sum()
neighbourhood_cleansed BroadwayBelltownWallingfordFremontMinorUnivers... price 0.428759 dtype: object
Top_10_area = list(top_listings.iloc[:10,0])
Top_10_area
['Broadway', 'Belltown', 'Wallingford', 'Fremont', 'Minor', 'University District', 'Stevens', 'First Hill', 'Central Business District', 'Lower Queen Anne']
Top listings
We will now check what are the important amenities and what affects prices of the lisitngs
listings6.shape
(3818, 63)
listings7 = listings6.copy()
listings7.head()
| neighbourhood_group_cleansed | latitude | longitude | property_type | bed_type | host_response_time | host_response_rate | host_acceptance_rate | host_is_superhost | neighbourhood_cleansed | room_type | accommodates | bathrooms | bedrooms | amenities | price | minimum_nights | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | id | Overall_score | flexible | moderate | strict | Entire home/apt | Private room | Shared room | Airbed | Couch | Futon | Pull-out Sofa | Real Bed | "24-Hour Check-in" | "Air Conditioning" | "Buzzer/Wireless Intercom" | "Cable TV" | "Carbon Monoxide Detector" | "Elevator in Building" | "Family/Kid Friendly" | "Fire Extinguisher" | "First Aid Kit" | "Free Parking on Premises" | "Hair Dryer" | "Indoor Fireplace" | "Laptop Friendly Workspace" | "Pets Allowed" | "Pets live on this property" | "Safety Card" | "Smoke Detector" | "Wireless Internet" | Dog(s) | Dryer | Essentials | Gym | Hangers | Heating | Internet | Iron | Kitchen | Shampoo | TV | Washer | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Queen Anne | 47.636289 | -122.371025 | Apartment | Real Bed | within a few hours | 96.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 85.0 | 1 | moderate | 0 | 0 | 241032 | 9.857143 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 1 | Queen Anne | 47.639123 | -122.365666 | Apartment | Real Bed | within an hour | 98.0 | 100.0 | 1 | West Queen Anne | Entire home/apt | 4 | 1.0 | 1.0 | TV,Internet,"Wireless Internet",Kitchen,"Free ... | 150.0 | 2 | strict | 1 | 1 | 953595 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 |
| 2 | Queen Anne | 47.629724 | -122.369483 | House | Real Bed | within a few hours | 67.0 | 100.0 | 0 | West Queen Anne | Entire home/apt | 11 | 4.5 | 5.0 | TV,"Cable TV",Internet,"Wireless Internet","Ai... | 975.0 | 4 | strict | 0 | 0 | 3308979 | 10.000000 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
| 3 | Queen Anne | 47.638473 | -122.369279 | Apartment | Real Bed | 0 | 0.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 3 | 1.0 | 0.0 | Internet,"Wireless Internet",Kitchen,"Indoor F... | 100.0 | 1 | flexible | 0 | 0 | 7421966 | 0.000000 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 |
| 4 | Queen Anne | 47.632918 | -122.372471 | House | Real Bed | within an hour | 100.0 | 0.0 | 0 | West Queen Anne | Entire home/apt | 6 | 2.0 | 3.0 | TV,"Cable TV",Internet,"Wireless Internet",Kit... | 450.0 | 1 | strict | 0 | 0 | 278830 | 9.285714 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
price_target = listings7['price']
listings7.drop(['price', 'cancellation_policy', 'room_type', 'amenities','property_type','bed_type',
'neighbourhood_group_cleansed','neighbourhood_cleansed','host_response_time', ], axis=1, inplace=True)
# Normalization using MinMaxScaler
# Initialize a scaler, then apply it to the features
scaler = MinMaxScaler() # default=(0, 1)
numerical = ['latitude', 'longitude', 'bathrooms', 'bedrooms', 'minimum_nights', 'Overall_score']
#listings7[numerical] = scaler.fit_transform(listings7[numerical])
listings8 = pd.DataFrame(scaler.fit_transform(listings7))
listings7.shape # has proper column names
(3818, 54)
listings8.shape # has column names as number
(3818, 54)
# Split the dataset into training and testing dataset
X_train, X_test, y_train, y_test = train_test_split(listings8, price_target, test_size = 0.2, random_state = 42)
print("Training set size {}".format(X_train.shape[0]))
print("Testing set size {}".format(X_test.shape[0]))
Training set size 3054 Testing set size 764
# Grid Search to find the best parameters
param_grid = {'n_estimators': [100, 200],
'learning_rate' : [0.05,0.1],
'loss': ['linear', 'square']
}
adaboost_regressor = AdaBoostRegressor(random_state=42)
grid_search_cv = GridSearchCV(adaboost_regressor, param_grid=param_grid, cv=5,
scoring='neg_mean_squared_error', return_train_score=True)
grid_search_cv.fit(X_train, y_train)
GridSearchCV(cv=5, error_score='raise',
estimator=AdaBoostRegressor(base_estimator=None, learning_rate=1.0, loss='linear',
n_estimators=50, random_state=42),
fit_params=None, iid=True, n_jobs=1,
param_grid={'n_estimators': [100, 200], 'learning_rate': [0.05, 0.1], 'loss': ['linear', 'square']},
pre_dispatch='2*n_jobs', refit=True, return_train_score=True,
scoring='neg_mean_squared_error', verbose=0)
grid_search_cv.best_params_
{'learning_rate': 0.1, 'loss': 'square', 'n_estimators': 100}
results = grid_search_cv.cv_results_
for mean_score, params in zip(results["mean_test_score"], results["params"]):
print(np.sqrt(-mean_score), params)
66.94188674943331 {'learning_rate': 0.05, 'loss': 'linear', 'n_estimators': 100}
66.61863474202936 {'learning_rate': 0.05, 'loss': 'linear', 'n_estimators': 200}
68.58655434405763 {'learning_rate': 0.05, 'loss': 'square', 'n_estimators': 100}
67.12724263696195 {'learning_rate': 0.05, 'loss': 'square', 'n_estimators': 200}
66.99811330972258 {'learning_rate': 0.1, 'loss': 'linear', 'n_estimators': 100}
68.24891516624547 {'learning_rate': 0.1, 'loss': 'linear', 'n_estimators': 200}
66.46137593453875 {'learning_rate': 0.1, 'loss': 'square', 'n_estimators': 100}
66.94412928949653 {'learning_rate': 0.1, 'loss': 'square', 'n_estimators': 200}
y_pred = grid_search_cv.predict(X_test)
print("Error on Test Data: {0:.2f}".format(np.sqrt(mean_squared_error(y_test, y_pred))))
Error on Test Data: 62.04
# Feature Importance
feature_importances = grid_search_cv.best_estimator_.feature_importances_
feature_importances1 = sorted(zip(feature_importances, listings7.columns), reverse=True)
#feature_importances1
features, coefficients = [], []
for feature in feature_importances1:
features.append(feature[1])
coefficients.append(feature[0])
feature_importance_df = pd.DataFrame(columns=['feature', 'coefficients'])
feature_importance_df['feature'] = pd.Series(features)
feature_importance_df['coefficients'] = pd.Series(coefficients)
feature_importance_df.sort_values(by=['coefficients'],ascending=False, inplace=True)
feature_importance_df.index = feature_importance_df['feature']
plt.figure(figsize=(10,5));
feature_importance_df[:20].plot(kind='bar', legend=False);
plt.xlabel('Feature');
plt.ylabel('Importance');
plt.title('Most Important features - Top 20');
plt.show();
<Figure size 720x360 with 0 Axes>
all_amenities = amenities_temp["index"].unique()
# Amenity importance
amenities, coefficients = [], []
for feature in feature_importances1:
if feature[1] in all_amenities:
amenities.append(feature[1])
coefficients.append(feature[0])
amenity_importance_df = pd.DataFrame(columns=['amenity', 'coefficients'])
amenity_importance_df['amenity'] = pd.Series(amenities)
amenity_importance_df['coefficients'] = pd.Series(coefficients)
amenity_importance_df.sort_values(by=['coefficients'],ascending=False, inplace=True)
amenity_importance_df.index = amenity_importance_df['amenity']
plt.figure(figsize=(10,5));
amenity_importance_df[:10].plot(kind='bar', legend=False);
plt.xlabel('Amenity');
plt.ylabel('Importance');
plt.title('Most Important Amenities - Top 10');
plt.xticks(rotation=90);
plt.show();
<Figure size 720x360 with 0 Axes>
Through this article we went through Seattle Airbnb dataset and some visualizations to understand what are the major popular areas in Seattle are. We also understood the following: